Skip to content
Snippets Groups Projects
Commit c47c9497 authored by Vijay Pai's avatar Vijay Pai
Browse files

clang-format

parent 60a7e333
No related branches found
No related tags found
No related merge requests found
...@@ -253,7 +253,7 @@ class Client { ...@@ -253,7 +253,7 @@ class Client {
void ThreadFunc() { void ThreadFunc() {
for (;;) { for (;;) {
// lock since the thread should only be doing one thing at a time // lock since the thread should only be doing one thing at a time
std::lock_guard<std::mutex> g(mu_); std::lock_guard<std::mutex> g(mu_);
// run the loop body // run the loop body
const bool thread_still_ok = client_->ThreadFunc(&histogram_, idx_); const bool thread_still_ok = client_->ThreadFunc(&histogram_, idx_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment