aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-05-03 10:36:11 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-05-03 10:36:11 -0700
commit77933b1897af206fc7722c53a07833d947ca45f3 (patch)
tree639f9c2d401845d94c3bd11b233a40d6924f3be8 /src/compiler
parentdcb05c16c67e1473880482fff0581f11edd3da1b (diff)
clang-format
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/objective_c_generator.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/objective_c_generator.cc b/src/compiler/objective_c_generator.cc
index 2294615a28..e97494f64c 100644
--- a/src/compiler/objective_c_generator.cc
+++ b/src/compiler/objective_c_generator.cc
@@ -222,7 +222,8 @@ void PrintMethodImplementations(Printer* printer,
map< ::grpc::string, ::grpc::string> vars = {
{"service_class", ServiceClassName(service)}};
- printer.Print(vars, "@protocol $service_class$ <NSObject, GRPCProtoServiceInit>\n\n");
+ printer.Print(
+ vars, "@protocol $service_class$ <NSObject, GRPCProtoServiceInit>\n\n");
for (int i = 0; i < service->method_count(); i++) {
PrintMethodDeclarations(&printer, service->method(i));
}