comparison 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
comparison
equal deleted inserted replaced
208:7eade513d470 209:ccd2019190bf
1
2 #ifndef QM_DSP_RESTRICT_H
3 #define QM_DSP_RESTRICT_H
4
5 #ifdef _MSC_VER
6 #define QM_R__ __restrict
7 #endif
8
9 #ifdef __GNUC__
10 #define QM_R__ __restrict__
11 #endif
12
13 #ifndef QM_R__
14 #define QM_R__
15 #endif
16
17 #endif