aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdutils/td/utils/WaitFreeHashSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdutils/td/utils/WaitFreeHashSet.h')
-rw-r--r--tdutils/td/utils/WaitFreeHashSet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/td/utils/WaitFreeHashSet.h b/tdutils/td/utils/WaitFreeHashSet.h
index 1c21329ff..f90ccbde7 100644
--- a/tdutils/td/utils/WaitFreeHashSet.h
+++ b/tdutils/td/utils/WaitFreeHashSet.h
@@ -17,7 +17,7 @@ namespace td {
template <class KeyT, class HashT = Hash<KeyT>, class EqT = std::equal_to<KeyT>>
class WaitFreeHashSet {
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;
FlatHashSet<KeyT, HashT, EqT> default_set_;