aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdutils/td/utils/WaitFreeHashMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdutils/td/utils/WaitFreeHashMap.h')
-rw-r--r--tdutils/td/utils/WaitFreeHashMap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/td/utils/WaitFreeHashMap.h b/tdutils/td/utils/WaitFreeHashMap.h
index 576564c88..6235a2ec7 100644
--- a/tdutils/td/utils/WaitFreeHashMap.h
+++ b/tdutils/td/utils/WaitFreeHashMap.h
@@ -17,7 +17,7 @@ namespace td {
template <class KeyT, class ValueT, class HashT = Hash<KeyT>, class EqT = std::equal_to<KeyT>>
class WaitFreeHashMap {
static constexpr size_t MAX_STORAGE_COUNT = 1 << 8;
- static_assert((MAX_STORAGE_COUNT & (MAX_STORAGE_COUNT - 1)) == 0, "");
+ static_assert((MAX_STORAGE_COUNT & (MAX_STORAGE_COUNT - 1)) == 0);
static constexpr uint32 DEFAULT_STORAGE_SIZE = 1 << 12;
FlatHashMap<KeyT, ValueT, HashT, EqT> default_map_;