Browse Source

Android build fix.

tags/2021-05-28
jules 13 years ago
parent
commit
6c08b41a5a
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp
  2. +1
    -1
      modules/juce_audio_basics/juce_audio_basics.cpp

+ 1
- 1
modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp View File

@@ -101,7 +101,7 @@ namespace FloatVectorHelpers
#else #else
#define JUCE_PERFORM_SSE_OP_DEST(normalOp, unused1) for (int i = 0; i < num; ++i) normalOp;
#define JUCE_PERFORM_SSE_OP_DEST(normalOp, unused1, unused2) for (int i = 0; i < num; ++i) normalOp;
#define JUCE_PERFORM_SSE_OP_SRC_DEST(normalOp, sseOp, locals, increment) for (int i = 0; i < num; ++i) normalOp; #define JUCE_PERFORM_SSE_OP_SRC_DEST(normalOp, sseOp, locals, increment) for (int i = 0; i < num; ++i) normalOp;
#endif #endif


+ 1
- 1
modules/juce_audio_basics/juce_audio_basics.cpp View File

@@ -42,7 +42,7 @@
#endif #endif
#if ! JUCE_INTEL #if ! JUCE_INTEL
#define JUCE_USE_SSE_INTRINSICS 0
#undef JUCE_USE_SSE_INTRINSICS
#endif #endif
#if JUCE_USE_SSE_INTRINSICS #if JUCE_USE_SSE_INTRINSICS


Loading…
Cancel
Save