Skip to content

Commit

Permalink
Update clippy.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerpearce authored Mar 5, 2024
1 parent a64b04a commit 43bfc2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/clippy/clippy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,7 @@ class clippy {
logfile << "<-hlp- " << m_json_config << std::endl;
}

if(world.rank0()) {
std::cout << m_json_config;
}
std::cout << m_json_config;
return true;
}
std::string buf;
Expand Down Expand Up @@ -239,7 +237,9 @@ class clippy {
logfile << "<-hlp- " << m_json_config << std::endl;
}

std::cout << m_json_config;
if(world.rank0()) {
std::cout << m_json_config;
}
return true;
}

Expand Down

0 comments on commit 43bfc2a

Please sign in to comment.