Mercurial > hg > qm-dsp
annotate base/Restrict.h @ 435:ad02841a1172
Add a MSVC build project. This is hard to use, because it depends on a BLAS library
| author | Chris Cannam <c.cannam@qmul.ac.uk> |
|---|---|
| date | Mon, 05 Feb 2018 17:36:47 +0000 |
| parents | 7461bf03194e |
| children | 64fc3009d0a3 |
| rev | line source |
|---|---|
| c@434 | 1 |
| c@434 | 2 #ifndef QM_DSP_RESTRICT_H |
| c@434 | 3 #define QM_DSP_RESTRICT_H |
| c@434 | 4 |
| c@434 | 5 #ifdef _MSC_VER |
| c@434 | 6 #define QM_R__ __restrict |
| c@434 | 7 #endif |
| c@434 | 8 |
| c@434 | 9 #ifdef __GNUC__ |
| c@434 | 10 #define QM_R__ __restrict__ |
| c@434 | 11 #endif |
| c@434 | 12 |
| c@434 | 13 #ifndef QM_R__ |
| c@434 | 14 #define QM_R__ |
| c@434 | 15 #endif |
| c@434 | 16 |
| c@434 | 17 #endif |
