Skip to content

Commit 438cc79

Browse files
committed
IOSS: visualization - make conversion int64_t to int visible
1 parent 486a767 commit 438cc79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/seacas/libraries/ioss/src/visualization/exodus/Iovs_exodus_DatabaseIO.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright(C) 1999-2023 National Technology & Engineering Solutions
1+
// Copyright(C) 1999-2024 National Technology & Engineering Solutions
22
// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
33
// NTESS, the U.S. Government retains certain rights in this software.
44
//
@@ -68,7 +68,7 @@ namespace Iovs_exodus {
6868
CatalystExodusMeshBase::ElementBlockIdNameList ebinList;
6969
Ioss::ElementBlockContainer const &ebc = region->get_element_blocks();
7070
for (auto i : ebc) {
71-
ebinList.emplace_back(get_id(i, &ids_), i->name());
71+
ebinList.emplace_back((int)get_id(i, &ids_), i->name());
7272
}
7373
this->catExoMesh->InitializeElementBlocks(ebinList);
7474
}

0 commit comments

Comments
 (0)