lottie/vector: fix build failure for non-arm devices 29/188229/2
authorYoungbok Shin <youngb.shin@samsung.com>
Mon, 3 Sep 2018 07:33:37 +0000 (16:33 +0900)
committerYoungbok Shin <youngb.shin@samsung.com>
Mon, 3 Sep 2018 07:43:54 +0000 (16:43 +0900)
Change-Id: Id03173880629859df24e8c195a5060d8494f8d88

src/vector/vdrawhelper_neon.cpp

index 65fd57a..49502d1 100644 (file)
@@ -1,3 +1,4 @@
+#if defined(__ARM_NEON__)
 
 #include "vdrawhelper.h"
 
@@ -16,3 +17,5 @@ void memfill32(uint32_t *dest, uint32_t value, int length)
                                          length,
                                          value);
 }
+
+#endif