diff options
author | Andreas Gampe <agampe@google.com> | 2014-11-05 02:42:56 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-11-05 02:42:56 +0000 |
commit | 78a3233313260665fe82ba56257855e043bca3d4 (patch) | |
tree | 46622bf088b3f30d2c6d8a5b548519137c88c867 /runtime/base/macros.h | |
parent | fe50a0f644bf57a92612d08ad21dc4ea5a2f652a (diff) | |
parent | 277ccbd200ea43590dfc06a93ae184a765327ad0 (diff) | |
download | art-78a3233313260665fe82ba56257855e043bca3d4.zip art-78a3233313260665fe82ba56257855e043bca3d4.tar.gz art-78a3233313260665fe82ba56257855e043bca3d4.tar.bz2 |
Merge "ART: More warnings"
Diffstat (limited to 'runtime/base/macros.h')
-rw-r--r-- | runtime/base/macros.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/runtime/base/macros.h b/runtime/base/macros.h index d297439..66d6fab 100644 --- a/runtime/base/macros.h +++ b/runtime/base/macros.h @@ -41,28 +41,6 @@ #define FINAL #endif -// The COMPILE_ASSERT macro can be used to verify that a compile time -// expression is true. For example, you could use it to verify the -// size of a static array: -// -// COMPILE_ASSERT(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES, -// content_type_names_incorrect_size); -// -// or to make sure a struct is smaller than a certain size: -// -// COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large); -// -// The second argument to the macro is the name of the variable. If -// the expression is false, most compilers will issue a warning/error -// containing the name of the variable. - -template <bool> -struct CompileAssert { -}; - -#define COMPILE_ASSERT(expr, msg) \ - typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] // NOLINT - // Declare a friend relationship in a class with a test. Used rather that FRIEND_TEST to avoid // globally importing gtest/gtest.h into the main ART header files. #define ART_FRIEND_TEST(test_set_name, individual_test)\ |