Commit 2a99b77f authored by Dominik Charousset's avatar Dominik Charousset

Adhere to coding conventions

parent 4bf087c5
...@@ -57,9 +57,7 @@ public: ...@@ -57,9 +57,7 @@ public:
rd_pos_ = next(rp); rd_pos_ = next(rp);
// Wakeup a waiting producers if the queue became non-full. // Wakeup a waiting producers if the queue became non-full.
if (rp == next(wr_pos_)) if (rp == next(wr_pos_))
{
cv_full_.notify_all(); cv_full_.notify_all();
}
} }
void push_back(T&& x) { void push_back(T&& x) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment