123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef __UTIL_STATIC_ASSERT_H__
- # define __UTIL_STATIC_ASSERT_H__
- CCL_NAMESPACE_BEGIN
- # ifdef __KERNEL_GPU__
- # ifndef static_assert
- # define static_assert(statement, message)
- # endif
- # endif
- # define static_assert_align(st, align) \
- static_assert((sizeof(st) % (align) == 0), "Structure must be strictly aligned")
- CCL_NAMESPACE_END
- #endif
|