Skip to content

Commit 09d0e4f

Browse files
authored
Merge pull request #3442 from jessecarterMOOSE/abaqus_boundary_type
Use boundary_id_type for nodeset/sideset counter types in Abaqus mesh reader
2 parents bc27fd1 + 75dde05 commit 09d0e4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mesh/abaqus_io.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ void AbaqusIO::assign_boundary_node_ids()
10351035

10361036
// Iterate over the container of nodesets
10371037
container_t::iterator it = _nodeset_ids.begin(), end = _nodeset_ids.end();
1038-
for (unsigned short current_id=0; it != end; ++it, ++current_id)
1038+
for (boundary_id_type current_id=0; it != end; ++it, ++current_id)
10391039
{
10401040
// Associate current_id with the name we determined earlier
10411041
the_mesh.get_boundary_info().nodeset_name(current_id) = it->first;
@@ -1075,7 +1075,7 @@ void AbaqusIO::assign_sideset_ids()
10751075
// Iterate over the container of sidesets
10761076
{
10771077
sideset_container_t::iterator it = _sideset_ids.begin(), end = _sideset_ids.end();
1078-
for (unsigned short current_id=0; it != end; ++it, ++current_id)
1078+
for (boundary_id_type current_id=0; it != end; ++it, ++current_id)
10791079
{
10801080
// Associate current_id with the name we determined earlier
10811081
the_mesh.get_boundary_info().sideset_name(current_id) = it->first;

0 commit comments

Comments
 (0)