diff options
author | Yang Gao <yangg@google.com> | 2015-03-17 15:49:26 -0700 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-03-17 15:49:26 -0700 |
commit | 757afaeb3072a3f3d30d2054ce1a53af168c48ce (patch) | |
tree | 84f72ff9e6eb20ba56d50ef1f7c41a7c05ea33d9 /include | |
parent | d672d8fbe22e414ca6fee0f279c4550ea927988c (diff) |
clang-format new changes
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/completion_queue.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/grpc++/completion_queue.h b/include/grpc++/completion_queue.h index 8a36b09a7f..d98a8bbd5f 100644 --- a/include/grpc++/completion_queue.h +++ b/include/grpc++/completion_queue.h @@ -77,19 +77,18 @@ class CompletionQueue { ~CompletionQueue(); // Tri-state return for AsyncNext: SHUTDOWN, GOT_EVENT, TIMEOUT - enum NextStatus {SHUTDOWN, GOT_EVENT, TIMEOUT}; + enum NextStatus { SHUTDOWN, GOT_EVENT, TIMEOUT }; // Nonblocking (until deadline) read from queue. // Cannot rely on result of tag or ok if return is TIMEOUT - NextStatus AsyncNext(void **tag, bool *ok, - std::chrono::system_clock::time_point deadline); + NextStatus AsyncNext(void** tag, bool* ok, + std::chrono::system_clock::time_point deadline); // Blocking (until deadline) read from queue. // Returns false if the queue is ready for destruction, true if event - bool Next(void **tag, bool *ok) { - return (AsyncNext(tag,ok, - std::chrono::system_clock::time_point::max()) != - SHUTDOWN); + bool Next(void** tag, bool* ok) { + return (AsyncNext(tag, ok, std::chrono::system_clock::time_point::max()) != + SHUTDOWN); } // Shutdown has to be called, and the CompletionQueue can only be |