Skip to content

Commit

Permalink
IOSS: visualization - make conversion int64_t to int visible
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Sep 27, 2024
1 parent 486a767 commit 438cc79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright(C) 1999-2023 National Technology & Engineering Solutions
// Copyright(C) 1999-2024 National Technology & Engineering Solutions
// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
// NTESS, the U.S. Government retains certain rights in this software.
//
Expand Down Expand Up @@ -68,7 +68,7 @@ namespace Iovs_exodus {
CatalystExodusMeshBase::ElementBlockIdNameList ebinList;
Ioss::ElementBlockContainer const &ebc = region->get_element_blocks();
for (auto i : ebc) {
ebinList.emplace_back(get_id(i, &ids_), i->name());
ebinList.emplace_back((int)get_id(i, &ids_), i->name());
}
this->catExoMesh->InitializeElementBlocks(ebinList);
}
Expand Down

0 comments on commit 438cc79

Please sign in to comment.