Restrict.h
Go to the documentation of this file.
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2 
3 #ifndef QM_DSP_RESTRICT_H
4 #define QM_DSP_RESTRICT_H
5 
6 #ifdef _MSC_VER
7 #define QM_R__ __restrict
8 #endif
9 
10 #ifdef __GNUC__
11 #define QM_R__ __restrict__
12 #endif
13 
14 #ifndef QM_R__
15 #define QM_R__
16 #endif
17 
18 #endif