From e3e2c301afdb7838d14521c4eefc113965a24acd Mon Sep 17 00:00:00 2001 From: lewisgross1296 Date: Wed, 10 Aug 2022 15:59:22 -0500 Subject: [PATCH] forgot to prefix function with openmc. all other extern functions do this,so I changed it to be parallel --- src/tallies/tally.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tallies/tally.cpp b/src/tallies/tally.cpp index 82b526b4e2..4384d62c78 100644 --- a/src/tallies/tally.cpp +++ b/src/tallies/tally.cpp @@ -1274,7 +1274,7 @@ extern "C" size_t tallies_size() } // given a tally ID, remove it from the tallies vector -extern "C" void remove_tally_from_tallies(int32_t id) +extern "C" void openmc_remove_tally_from_tallies(int32_t id) { // query map for index corersponding to the given id int index = model::tally_map[id];