mirror of https://github.com/facebook/rocksdb.git
Remove extra semi colon from internal_repo_rocksdb/repo/port/lang.h
Summary: `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: dmm-fb Differential Revision: D52968990 fbshipit-source-id: 58d344b719734c736cd80d47eeb6965557ce344b
This commit is contained in:
parent
7fe93162c5
commit
dee46863ba
|
@ -72,7 +72,7 @@ constexpr bool kMustFreeHeapAllocations = false;
|
|||
// Compile-time CPU feature testing compatibility
|
||||
//
|
||||
// A way to be extra sure these defines have been included.
|
||||
#define ASSERT_FEATURE_COMPAT_HEADER() /* empty */
|
||||
#define ASSERT_FEATURE_COMPAT_HEADER() static_assert(true, "Semicolon required") /* empty */
|
||||
|
||||
// MSVC doesn't support the same defines that gcc and clang provide
|
||||
// but does some like __AVX__. Here we can infer some features from others.
|
||||
|
|
Loading…
Reference in New Issue