Baselib_StaticAssert.h 294 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 #pragma once // C99 compatible static_assert // Use static_assert in all C++ code directly. #ifdef __cplusplus #define BASELIB_STATIC_ASSERT(EXPR_, MSG_) static_assert(EXPR_, MSG_) #else #define BASELIB_STATIC_ASSERT(EXPR_, MSG_) COMPILER_C_STATIC_ASSERT(EXPR_, MSG_) #endif