From f529ec9f58f0901572e6920527e8f4c8793572db Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Tue, 12 Jul 2016 18:33:04 -0700 Subject: [PATCH] Fix a typo in the name of a #define. --- src/object-store/src/util/compiler.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/object-store/src/util/compiler.hpp b/src/object-store/src/util/compiler.hpp index 581cb7bc..ee9a0d01 100644 --- a/src/object-store/src/util/compiler.hpp +++ b/src/object-store/src/util/compiler.hpp @@ -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