Skip to content

Commit

Permalink
clangformat.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjp41 committed Sep 27, 2023
1 parent 3966191 commit 7359878
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/perf/startup/startup.cc
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ int main()
std::cout << "Taken: " << test.time() << std::endl;
std::sort(counters.begin(), counters.end());
uint64_t start = 0;
for (auto counter: counters)
for (auto counter : counters)
{
std::cout << "Thread time " << counter << " (" << counter - start
<< ")" << std::endl;
std::cout << "Thread time " << counter << " (" << counter - start << ")"
<< std::endl;
start = counter;
}
}

0 comments on commit 7359878

Please sign in to comment.