mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
#125 Fix unused typedef/variable warning for static assertion
This commit is contained in:
parent
4e61c45ef9
commit
9db828953a
1 changed files with 3 additions and 2 deletions
|
@ -88,9 +88,10 @@ typedef unsigned char uint8;
|
|||
|
||||
// -- utility macros ---------------------------------------------------------
|
||||
|
||||
template <bool> struct CompileAssert {};
|
||||
template <bool b> struct CompileAssert;
|
||||
template <> struct CompileAssert<true> {};
|
||||
#define COMPILE_ASSERT(expr, msg) \
|
||||
typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
|
||||
enum { assert_##msg = sizeof(CompileAssert<bool(expr)>) }
|
||||
|
||||
// Returns the number of elements in an array.
|
||||
#define arraysize(arr) (sizeof(arr)/sizeof(*(arr)))
|
||||
|
|
Loading…
Add table
Reference in a new issue