15 lines
198 B
C++
15 lines
198 B
C++
#ifndef WC3RE_COMPILER_HH__
|
|
#define WC3RE_COMPILER_HH__
|
|
|
|
#ifdef __GNUG__
|
|
#define RESTRICT __restrict__
|
|
#else
|
|
#ifdef _MSC_VER
|
|
#define RESTRICT __restrict
|
|
#else
|
|
#define RESTRICT
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|