forgot to prefix function with openmc. all other extern functions do this,so I changed it to be parallel

This commit is contained in:
lewisgross1296 2022-08-10 15:59:22 -05:00
parent 9d146a3e0f
commit e3e2c301af

View file

@ -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];