Skip to content

Commit

Permalink
CPUP: Remove yet another shadowed variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Jan 26, 2022
1 parent 628251d commit bf562b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/seacas/applications/cpup/cpup.C
Original file line number Diff line number Diff line change
Expand Up @@ -743,8 +743,8 @@ namespace {

// Find all corresponding blocks on the input part meshes...
for (const auto &part : part_mesh) {
auto &blocks = part->get_structured_blocks();
for (const auto &pblock : blocks) {
auto &sblocks = part->get_structured_blocks();
for (const auto &pblock : sblocks) {
auto &name = pblock->name();
auto name_proc = Iocgns::Utils::decompose_name(name, true);
if (name_proc.first == block->name()) {
Expand Down

0 comments on commit bf562b1

Please sign in to comment.