mirror of https://github.com/facebook/rocksdb.git
Remove extra semi colon from internal_repo_rocksdb/repo/monitoring/perf_context_imp.h
Summary: `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: dmm-fb Differential Revision: D51778007 fbshipit-source-id: 5d1b20a3acc4bcc7cd7c204f2f73a14fc8f81883
This commit is contained in:
parent
06dc32ef25
commit
dce3ca5ab8
|
@ -74,7 +74,8 @@ extern thread_local PerfContext perf_context;
|
|||
#define PERF_COUNTER_ADD(metric, value) \
|
||||
if (perf_level >= PerfLevel::kEnableCount) { \
|
||||
perf_context.metric += value; \
|
||||
}
|
||||
} \
|
||||
static_assert(true, "semicolon required")
|
||||
|
||||
// Increase metric value
|
||||
#define PERF_COUNTER_BY_LEVEL_ADD(metric, value, level) \
|
||||
|
|
Loading…
Reference in New Issue