From 9bdad4346214f41b6bd8c2d009502ffbe9a9f9bd Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 7 Sep 2016 23:07:05 -0700 Subject: [PATCH] Fix formatting --- src/asyncrpcqueue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asyncrpcqueue.cpp b/src/asyncrpcqueue.cpp index d7d82557d..afe6d4bef 100644 --- a/src/asyncrpcqueue.cpp +++ b/src/asyncrpcqueue.cpp @@ -31,7 +31,7 @@ void AsyncRPCQueue::run(size_t workerId) { AsyncRPCOperationId key; std::shared_ptr operation; { - std::unique_lock< std::mutex > guard(lock_); + std::unique_lock guard(lock_); while (operation_id_queue_.empty() && !isClosed() && !isFinishing()) { this->condition_.wait(guard); }