clang-format

pull/7018/head
Vijay Pai 8 years ago
parent 45c6d5ca64
commit 77073ce99f
  1. 12
      include/grpc++/impl/codegen/sync_stream.h

@ -457,7 +457,8 @@ namespace internal {
template <class W, class R>
class ServerReaderWriterBody GRPC_FINAL {
public:
ServerReaderWriterBody(Call* call, ServerContext* ctx) : call_(call), ctx_(ctx) {}
ServerReaderWriterBody(Call* call, ServerContext* ctx)
: call_(call), ctx_(ctx) {}
void SendInitialMetadata() {
GPR_CODEGEN_ASSERT(!ctx_->sent_initial_metadata_);
@ -512,8 +513,7 @@ class ServerReaderWriterBody GRPC_FINAL {
template <class W, class R>
class ServerReaderWriter GRPC_FINAL : public ServerReaderWriterInterface<W, R> {
public:
ServerReaderWriter(Call* call, ServerContext* ctx)
: body_(call, ctx) {}
ServerReaderWriter(Call* call, ServerContext* ctx) : body_(call, ctx) {}
void SendInitialMetadata() GRPC_OVERRIDE { body_.SendInitialMetadata(); }
@ -527,9 +527,9 @@ class ServerReaderWriter GRPC_FINAL : public ServerReaderWriterInterface<W, R> {
bool Write(const W& msg, const WriteOptions& options) GRPC_OVERRIDE {
return body_.Write(msg, options);
}
private:
internal::ServerReaderWriterBody<W,R> body_;
internal::ServerReaderWriterBody<W, R> body_;
};
/// A class to represent a flow-controlled unary call. This is something
@ -573,7 +573,7 @@ class ServerUnaryStreamer GRPC_FINAL
}
private:
internal::ServerReaderWriterBody<ResponseType,RequestType> body_;
internal::ServerReaderWriterBody<ResponseType, RequestType> body_;
bool read_done_;
bool write_done_;
};

Loading…
Cancel
Save