Go to the documentation of this file.
27 #ifndef bits_gpulog_align_h__
28 #define bits_gpulog_align_h__
35 #define LOCALLY_DEFINED_ALIGN
38 #define ALIGN(x) __align__(x)
40 #if defined(_MSC_VER) && (_MSC_VER >= 1300)
42 #define ALIGN(x) __declspec(align(x))
46 #define ALIGN(x) __attribute__ ((aligned (x)))
56 #endif // bits_gpulog_align_h__