diff options
| author | levlam <levlam@telegram.org> | 2023-05-05 13:51:19 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2023-05-05 13:51:19 +0300 |
| commit | c0911577f766a2bc1c108b2e6d37b1cafa3dc323 (patch) | |
| tree | 9c77da945c6ceafbab24745d874c227f4cd62d47 /tdutils/test | |
| parent | c2795ca9046e8de5197262743c4162c027cee724 (diff) | |
Use empty name for unused move constructor/assignment parameter.
Diffstat (limited to 'tdutils/test')
| -rw-r--r-- | tdutils/test/ConcurrentHashMap.cpp | 2 |
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(); |
