Skip to content

Commit bf562b1

Browse files
committed
CPUP: Remove yet another shadowed variable
1 parent 628251d commit bf562b1

File tree

1 file changed

+2
-2
lines changed
  • packages/seacas/applications/cpup

1 file changed

+2
-2
lines changed

packages/seacas/applications/cpup/cpup.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,8 @@ namespace {
743743

744744
// Find all corresponding blocks on the input part meshes...
745745
for (const auto &part : part_mesh) {
746-
auto &blocks = part->get_structured_blocks();
747-
for (const auto &pblock : blocks) {
746+
auto &sblocks = part->get_structured_blocks();
747+
for (const auto &pblock : sblocks) {
748748
auto &name = pblock->name();
749749
auto name_proc = Iocgns::Utils::decompose_name(name, true);
750750
if (name_proc.first == block->name()) {

0 commit comments

Comments
 (0)