From f38b0095e186af125d5f3c7812db1e4d8bbcb33f Mon Sep 17 00:00:00 2001 From: Roger Pearce Date: Fri, 2 Aug 2024 13:49:35 -0500 Subject: [PATCH] Hotfix --- include/ygm/container/counting_set.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ygm/container/counting_set.hpp b/include/ygm/container/counting_set.hpp index e5992b7b..f6974b31 100644 --- a/include/ygm/container/counting_set.hpp +++ b/include/ygm/container/counting_set.hpp @@ -44,7 +44,7 @@ class counting_set counting_set() = delete; counting_set(ygm::comm &comm, std::initializer_list l) - : m_map(comm ), + : m_map(comm), m_comm(comm), partitioner(m_map.partitioner), pthis(this) { @@ -61,7 +61,7 @@ class counting_set counting_set(ygm::comm &comm, const STLContainer &cont) requires detail::STLContainer && std::convertible_to - : m_comm(comm), pthis(this), partitioner(comm) { + : m_map(comm), m_comm(comm), pthis(this), partitioner(comm) { pthis.check(m_comm); for (const Key &i : cont) { @@ -75,7 +75,7 @@ class counting_set requires detail::HasForAll && detail::SingleItemTuple< typename YGMContainer::for_all_args> - : m_comm(comm), pthis(this), partitioner(comm) { + : m_map(comm), m_comm(comm), pthis(this), partitioner(comm) { pthis.check(m_comm); yc.for_all([this](const Key &value) { this->async_insert(value); });