diff options
Diffstat (limited to 'include/util/bf_config.h')
| -rw-r--r-- | include/util/bf_config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/util/bf_config.h b/include/util/bf_config.h index 836e452..7d823a7 100644 --- a/include/util/bf_config.h +++ b/include/util/bf_config.h @@ -35,6 +35,8 @@ static size_t BF_HASH_FUNCS = 7; * Adjust the value of BF_HASH_FUNCS. The argument must be on the interval * (0, INT64_MAX], or the behavior of bloom filters is undefined. */ -[[maybe_unused]] static void BF_SET_HASHFUNC(size_t func_cnt) { BF_HASH_FUNCS = func_cnt; } +[[maybe_unused]] static void BF_SET_HASHFUNC(size_t func_cnt) { + BF_HASH_FUNCS = func_cnt; +} } // namespace de |