Fix a typo in the name of a #define.

This commit is contained in:
Mark Rowe 2016-07-12 18:33:04 -07:00 committed by Thomas Goyne
parent f00eb4f52d
commit f529ec9f58
1 changed files with 3 additions and 3 deletions

View File

@ -20,12 +20,12 @@
#define REALM_UTIL_COMPILER_HPP
#ifdef __has_cpp_attribute
#define REALM_HAS_CCP_ATTRIBUTE(attr) __has_cpp_attribute(attr)
#define REALM_HAS_CPP_ATTRIBUTE(attr) __has_cpp_attribute(attr)
#else
#define REALM_HAS_CCP_ATTRIBUTE(attr) 0
#define REALM_HAS_CPP_ATTRIBUTE(attr) 0
#endif
#if REALM_HAS_CCP_ATTRIBUTE(clang::fallthrough)
#if REALM_HAS_CPP_ATTRIBUTE(clang::fallthrough)
#define REALM_FALLTHROUGH [[clang::fallthrough]]
#else
#define REALM_FALLTHROUGH