search for: use_compact_kiss_fft

Displaying 1 result from an estimated 1 matches for "use_compact_kiss_fft".

2017 Nov 03
1
[PATCH] Check for _WIN32 instead of WIN32 in preprocessor checks
...44 --- a/src/skeleton.h +++ b/src/skeleton.h @@ -10,7 +10,7 @@ extern "C" { #endif -#ifdef WIN32 +#ifdef _WIN32 #define snprintf _snprintf #endif diff --git a/tmv/config.h b/tmv/config.h index ea7abe1d..df61d4d0 100644 --- a/tmv/config.h +++ b/tmv/config.h @@ -4,7 +4,7 @@ #define USE_COMPACT_KISS_FFT //#define USE_KISS_FFT -#ifdef WIN32 +#ifdef _WIN32 //#define FIXED_POINT -- 2.13.6 (Apple Git-96)