annotate base/Restrict.h @ 209:ccd2019190bf msvc

Some MSVC fixes, including (temporarily, probably) renaming the FFT source file to avoid getting it mixed up with the Vamp SDK one in our object dir
author Chris Cannam
date Thu, 01 Feb 2018 16:34:08 +0000
parents
children 64fc3009d0a3
rev   line source
Chris@209 1
Chris@209 2 #ifndef QM_DSP_RESTRICT_H
Chris@209 3 #define QM_DSP_RESTRICT_H
Chris@209 4
Chris@209 5 #ifdef _MSC_VER
Chris@209 6 #define QM_R__ __restrict
Chris@209 7 #endif
Chris@209 8
Chris@209 9 #ifdef __GNUC__
Chris@209 10 #define QM_R__ __restrict__
Chris@209 11 #endif
Chris@209 12
Chris@209 13 #ifndef QM_R__
Chris@209 14 #define QM_R__
Chris@209 15 #endif
Chris@209 16
Chris@209 17 #endif