diff options
author | Craig Tiller <ctiller@google.com> | 2015-04-28 08:01:45 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-04-28 08:01:45 -0700 |
commit | 3691c3322d09b9a7225745695650772981923028 (patch) | |
tree | 9b529b94bb7444b16e49d8dc0c1785a692ded4cb /include | |
parent | 75d5d303eaa53f4f561439e9cc93338e849028fe (diff) |
clang-format
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/channel_interface.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/grpc++/channel_interface.h b/include/grpc++/channel_interface.h index bc738fb15a..10fb9538bc 100644 --- a/include/grpc++/channel_interface.h +++ b/include/grpc++/channel_interface.h @@ -49,13 +49,12 @@ class CompletionQueue; class RpcMethod; class CallInterface; -class ChannelInterface - : public CallHook, - public std::enable_shared_from_this<ChannelInterface> { +class ChannelInterface : public CallHook, + public std::enable_shared_from_this<ChannelInterface> { public: virtual ~ChannelInterface() {} - virtual void *RegisterMethod(const char *method_name) = 0; + virtual void* RegisterMethod(const char* method_name) = 0; virtual Call CreateCall(const RpcMethod& method, ClientContext* context, CompletionQueue* cq) = 0; }; |