Fix formatting

This commit is contained in:
Simon 2016-09-07 23:07:05 -07:00
parent e883ffef91
commit 9bdad43462
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ void AsyncRPCQueue::run(size_t workerId) {
AsyncRPCOperationId key;
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()) {
this->condition_.wait(guard);
}