Fix formatting

This commit is contained in:
Simon
2016-09-07 23:07:05 -07:00
parent e883ffef91
commit 9bdad43462

View File

@@ -31,7 +31,7 @@ void AsyncRPCQueue::run(size_t workerId) {
AsyncRPCOperationId key; AsyncRPCOperationId key;
std::shared_ptr<AsyncRPCOperation> operation; std::shared_ptr<AsyncRPCOperation> operation;
{ {
std::unique_lock< std::mutex > guard(lock_); std::unique_lock<std::mutex> guard(lock_);
while (operation_id_queue_.empty() && !isClosed() && !isFinishing()) { while (operation_id_queue_.empty() && !isClosed() && !isFinishing()) {
this->condition_.wait(guard); this->condition_.wait(guard);
} }