aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdutils/test
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2023-05-05 13:51:19 +0300
committerlevlam <levlam@telegram.org>2023-05-05 13:51:19 +0300
commitc0911577f766a2bc1c108b2e6d37b1cafa3dc323 (patch)
tree9c77da945c6ceafbab24745d874c227f4cd62d47 /tdutils/test
parentc2795ca9046e8de5197262743c4162c027cee724 (diff)
Use empty name for unused move constructor/assignment parameter.
Diffstat (limited to 'tdutils/test')
-rw-r--r--tdutils/test/ConcurrentHashMap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/test/ConcurrentHashMap.cpp b/tdutils/test/ConcurrentHashMap.cpp
index d47e0ba3b..5ab1f85ad 100644
--- a/tdutils/test/ConcurrentHashMap.cpp
+++ b/tdutils/test/ConcurrentHashMap.cpp
@@ -163,7 +163,7 @@ class ConcurrentHashMapJunction {
ConcurrentHashMapJunction(const ConcurrentHashMapJunction &) = delete;
ConcurrentHashMapJunction &operator=(const ConcurrentHashMapJunction &) = delete;
- ConcurrentHashMapJunction(ConcurrentHashMapJunction &&other) = delete;
+ ConcurrentHashMapJunction(ConcurrentHashMapJunction &&) = delete;
ConcurrentHashMapJunction &operator=(ConcurrentHashMapJunction &&) = delete;
~ConcurrentHashMapJunction() {
junction::DefaultQSBR.flush();