Skip to content

Commit 27b37f9

Browse files
Committing clang-format changes
1 parent 2c19ecf commit 27b37f9

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

packages/seacas/libraries/ioss/src/Ioss_StructuredBlock.C

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -454,17 +454,17 @@ namespace Ioss {
454454
if (quiet) {
455455
return false;
456456
}
457-
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: IJK mismatch ({} vs. {})\n",
458-
this->name(), fmt::join(this->m_ijk, ":"), fmt::join(rhs.m_ijk, ":"));
457+
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: IJK mismatch ({} vs. {})\n", this->name(),
458+
fmt::join(this->m_ijk, ":"), fmt::join(rhs.m_ijk, ":"));
459459
same = false;
460460
}
461461

462462
if (this->m_offset != rhs.m_offset) {
463463
if (quiet) {
464464
return false;
465465
}
466-
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: OFFSET mismatch ({} vs. {})\n",
467-
this->name(), fmt::join(this->m_offset, ":"), fmt::join(rhs.m_offset, ":"));
466+
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: OFFSET mismatch ({} vs. {})\n", this->name(),
467+
fmt::join(this->m_offset, ":"), fmt::join(rhs.m_offset, ":"));
468468
same = false;
469469
}
470470

@@ -518,13 +518,14 @@ namespace Ioss {
518518
return false;
519519
}
520520
if (this->m_blockLocalNodeIndex.size() != rhs.m_blockLocalNodeIndex.size()) {
521-
fmt::print(Ioss::OUTPUT(),
522-
"StructuredBlock {}: Block Local Node Index mismatch ({} entries vs. {} entries)\n",
523-
this->name(), this->m_blockLocalNodeIndex.size(), rhs.m_blockLocalNodeIndex.size());
521+
fmt::print(
522+
Ioss::OUTPUT(),
523+
"StructuredBlock {}: Block Local Node Index mismatch ({} entries vs. {} entries)\n",
524+
this->name(), this->m_blockLocalNodeIndex.size(), rhs.m_blockLocalNodeIndex.size());
524525
}
525526
else {
526-
fmt::print(Ioss::OUTPUT(),
527-
"StructuredBlock {}: Block Local Node Index contents mismatch.\n", this->name());
527+
fmt::print(Ioss::OUTPUT(),
528+
"StructuredBlock {}: Block Local Node Index contents mismatch.\n", this->name());
528529
}
529530
same = false;
530531
}
@@ -555,8 +556,9 @@ namespace Ioss {
555556
return l.m_connectionName < r.m_connectionName;
556557
});
557558
if (!vec_equal(lhzc, rhzc)) {
558-
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: Zone Connectivity mismatch (size {} vs {})\n",
559-
this->name(), this->m_zoneConnectivity.size(), rhs.m_zoneConnectivity.size());
559+
fmt::print(Ioss::OUTPUT(),
560+
"StructuredBlock {}: Zone Connectivity mismatch (size {} vs {})\n", this->name(),
561+
this->m_zoneConnectivity.size(), rhs.m_zoneConnectivity.size());
560562
same = false;
561563
}
562564
}
@@ -577,7 +579,8 @@ namespace Ioss {
577579
return l.m_bcName < r.m_bcName;
578580
});
579581
if (!vec_equal(lhbc, rhbc)) {
580-
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: Boundary Conditions mismatch\n", this->name());
582+
fmt::print(Ioss::OUTPUT(), "StructuredBlock {}: Boundary Conditions mismatch\n",
583+
this->name());
581584
same = false;
582585
}
583586
}

0 commit comments

Comments
 (0)