From 12f74d4e4a4081767a6c14795bb353da6e539c42 Mon Sep 17 00:00:00 2001 From: alesapin Date: Fri, 26 Feb 2021 16:56:57 +0300 Subject: [PATCH] Fix build --- src/Coordination/SnapshotableHashTable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Coordination/SnapshotableHashTable.h b/src/Coordination/SnapshotableHashTable.h index 2e8c0fc8b87..aa8758993f9 100644 --- a/src/Coordination/SnapshotableHashTable.h +++ b/src/Coordination/SnapshotableHashTable.h @@ -12,7 +12,7 @@ struct ListNode { std::string key; V value; - std::atomic active_in_map; + bool active_in_map; }; template