From a353f2ed969716c7506b26e6fcfc02cfabae2d64 Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Mon, 27 Dec 2021 17:53:57 -0800 Subject: [PATCH] #1643: Fix EMPIRE compilation error - method is untested within vt --- src/vt/vrt/collection/manager.impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vt/vrt/collection/manager.impl.h b/src/vt/vrt/collection/manager.impl.h index 5e993e97e5..89c5aecc2d 100644 --- a/src/vt/vrt/collection/manager.impl.h +++ b/src/vt/vrt/collection/manager.impl.h @@ -2098,7 +2098,7 @@ template std::set CollectionManager::getLocalIndices( CollectionProxyWrapType proxy ) { - auto elm_holder = findElmHolder(proxy); + auto elm_holder = findElmHolder(proxy.getProxy()); std::set local; elm_holder->foreach([&](IndexT const& idx, Indexable*) { local.insert(idx);