Skip to content

Commit

Permalink
Fixing clang-format for performance.cpp and future_overhead_report
Browse files Browse the repository at this point in the history
Signed-off-by: Vedant <[email protected]>
  • Loading branch information
vrnimje committed Jul 10, 2024
1 parent 33ea494 commit 526e048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions libs/core/testing/src/performance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ average: {{average(elapsed)}}{{^-last}}
average += val;
}
strm << "\n ],\n";
strm << std::scientific << R"( "average": )"<< average / series
<< "\n";
strm << std::scientific << R"( "average": )"
<< average / series << "\n";
strm << " }";
++outputs;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/performance/local/future_overhead_report.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ int hpx_main(variables_map& vm)
const std::uint64_t count = vm["futures"].as<std::uint64_t>();

hpx::util::perftests_init(vm);

if (HPX_UNLIKELY(0 == count))
throw std::logic_error("error: count of 0 futures specified\n");

Expand Down

0 comments on commit 526e048

Please sign in to comment.