diff options
Diffstat (limited to 'tdutils/td/utils/StealingQueue.h')
| -rw-r--r-- | tdutils/td/utils/StealingQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/td/utils/StealingQueue.h b/tdutils/td/utils/StealingQueue.h index c923cb92e..cbbba4f99 100644 --- a/tdutils/td/utils/StealingQueue.h +++ b/tdutils/td/utils/StealingQueue.h @@ -17,7 +17,7 @@ namespace td { template <class T, size_t N = 256> class StealingQueue { public: - static_assert(N > 0 && (N & (N - 1)) == 0, ""); + static_assert(N > 0 && (N & (N - 1)) == 0); // tries to put a value // returns if succeeded |
