Fix the warnings complained by Clang

This commit is contained in:
RangerUFO 2024-09-19 13:57:24 +08:00
parent 42ab476a9a
commit 62be3b98ce
1 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@ class PerClusterPools {
PerClusterPools() = delete; PerClusterPools() = delete;
PerClusterPools(const PerClusterPools&) = delete; PerClusterPools(const PerClusterPools&) = delete;
PerClusterPools& operator=(const PerClusterPools&) = delete; PerClusterPools& operator=(const PerClusterPools&) = delete;
PerClusterPools(PerClusterPools&&) = default; PerClusterPools(PerClusterPools&&) = delete;
PerClusterPools& operator=(PerClusterPools&&) = default; PerClusterPools& operator=(PerClusterPools&&) = delete;
// PerClusterPools supports spin waits (see StartSpinning below). To prevent // PerClusterPools supports spin waits (see StartSpinning below). To prevent
// drastic slowdowns caused by excessive user-specified thread counts, which // drastic slowdowns caused by excessive user-specified thread counts, which