From 27494e54c5b9ad8692dd6a714ecbe45d9f2d04d1 Mon Sep 17 00:00:00 2001 From: Ken Cooke Date: Thu, 11 Feb 2016 12:58:23 -0800 Subject: [PATCH] use the correct macro for detecting GCC --- libraries/audio/src/AudioHRTF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/audio/src/AudioHRTF.cpp b/libraries/audio/src/AudioHRTF.cpp index bce95072d9..4eef4ff723 100644 --- a/libraries/audio/src/AudioHRTF.cpp +++ b/libraries/audio/src/AudioHRTF.cpp @@ -143,7 +143,7 @@ static bool cpuSupportsAVX() { return result; } -#elif defined(__GNU__) +#elif defined(__GNUC__) static bool cpuSupportsAVX() { return __builtin_cpu_supports("avx");