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:
Richard Barnes 2024-01-23 09:41:29 -08:00 committed by Facebook GitHub Bot
parent 7fe93162c5
commit dee46863ba
1 changed files with 1 additions and 1 deletions

View File

@ -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.