mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 16:40:39 +08:00
fix compilation warnings
This commit is contained in:
@@ -143,7 +143,7 @@ TEST(FlatHashMap, MoveOnlyKey) {
|
||||
}
|
||||
|
||||
struct NonMovableKey {
|
||||
explicit NonMovableKey(int i) : i(i) {}
|
||||
explicit NonMovableKey(int i_) : i(i_) {}
|
||||
NonMovableKey(NonMovableKey&&) = delete;
|
||||
int i;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user