From 731aeed16acb9b5882e4c728fdb93fddd562a0f4 Mon Sep 17 00:00:00 2001 From: greg7mdp Date: Sun, 19 Nov 2023 18:25:22 -0500 Subject: [PATCH] fixup! Add support for Windows `phmap::srwlock` --- examples/phmap/lazy_emplace_l.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/phmap/lazy_emplace_l.cpp b/examples/phmap/lazy_emplace_l.cpp index 915b293..71f746d 100644 --- a/examples/phmap/lazy_emplace_l.cpp +++ b/examples/phmap/lazy_emplace_l.cpp @@ -15,7 +15,7 @@ using Map = gtl::parallel_flat_hash_map, std::allocator>, 8, - phmap::srwlock>; + gtl::srwlock>; class Dict { Map m_stringsMap;