From 625d83d6f4d8b0c214f7d66e56f89ba384a10671 Mon Sep 17 00:00:00 2001 From: Trevor Steil Date: Tue, 26 Dec 2023 16:19:25 -0600 Subject: [PATCH] Fixes ygm::container::multimap to use std::multimap for underlying storage --- include/ygm/container/map.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/ygm/container/map.hpp b/include/ygm/container/map.hpp index 7274afcc..f120546a 100644 --- a/include/ygm/container/map.hpp +++ b/include/ygm/container/map.hpp @@ -223,10 +223,10 @@ class multimap { void local_for_all(Function fn); private: - mapped_type m_default_value; - std::map m_local_map; - ygm::comm& m_comm; - ptr_type pthis; + mapped_type m_default_value; + std::multimap m_local_map; + ygm::comm& m_comm; + ptr_type pthis; }; } // namespace ygm::container