Skip to content

Commit

Permalink
IOSS: Fix parallel-io sideset read
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Nov 15, 2023
1 parent aa75589 commit 369c360
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ namespace Ioex {
Ioss::Int64Vector &element, Ioss::Int64Vector &sides)
{
// Check whether we already populated the element/sides vectors.
if (element.empty() && sides.empty() && number_sides > 0) {
if (element.empty() && sides.empty()) {
element.resize(number_sides);
sides.resize(number_sides);

Expand Down

0 comments on commit 369c360

Please sign in to comment.