Skip to content

Commit 844f509

Browse files
Committing clang-format changes
1 parent e7e081e commit 844f509

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

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

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ extern "C" {
6464
namespace {
6565
auto initial_time = std::chrono::steady_clock::now();
6666

67-
void log_time(const std::string &region_name,
68-
std::chrono::time_point<std::chrono::steady_clock> &start,
67+
void log_time(const std::string &region_name,
68+
std::chrono::time_point<std::chrono::steady_clock> &start,
6969
std::chrono::time_point<std::chrono::steady_clock> &finish, int current_state,
7070
double state_time, bool is_input, bool single_proc_only,
7171
const Ioss::ParallelUtils &util);
@@ -671,7 +671,8 @@ namespace Ioss {
671671
bool res = end_state_nl(state, time);
672672
if (m_timeStateInOut) {
673673
auto finish = std::chrono::steady_clock::now();
674-
log_time(get_region()->name(), m_stateStart, finish, state, time, is_input(), singleProcOnly, util_);
674+
log_time(get_region()->name(), m_stateStart, finish, state, time, is_input(), singleProcOnly,
675+
util_);
675676
}
676677
progress("DatabaseIO::end_state(int state, double time)");
677678
return res;
@@ -1576,8 +1577,8 @@ namespace Ioss {
15761577
} // namespace Ioss
15771578

15781579
namespace {
1579-
void log_time(const std::string &region_name,
1580-
std::chrono::time_point<std::chrono::steady_clock> &start,
1580+
void log_time(const std::string &region_name,
1581+
std::chrono::time_point<std::chrono::steady_clock> &start,
15811582
std::chrono::time_point<std::chrono::steady_clock> &finish, int current_state,
15821583
double state_time, bool is_input, bool single_proc_only,
15831584
const Ioss::ParallelUtils &util)
@@ -1593,8 +1594,8 @@ namespace {
15931594

15941595
if (util.parallel_rank() == 0 || single_proc_only) {
15951596
std::ostringstream strm;
1596-
fmt::print(strm, "\nIOSS: [{}] Time to {} state {}, time {} is ", region_name, (is_input ? "read " : "write"),
1597-
current_state, state_time);
1597+
fmt::print(strm, "\nIOSS: [{}] Time to {} state {}, time {} is ", region_name,
1598+
(is_input ? "read " : "write"), current_state, state_time);
15981599

15991600
double total = 0.0;
16001601
for (const auto &p_time : all_times) {

0 commit comments

Comments
 (0)