1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed an edge-case when expliticly enabling ARM NEON ops on linux.

This commit is contained in:
jules 2015-03-25 16:48:19 +00:00
parent 72b49689bf
commit 604044188c

View file

@ -66,6 +66,9 @@
#if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
#define JUCE_USE_ARM_NEON 1
#endif
#if JUCE_USE_ARM_NEON
#include <arm_neon.h>
#endif