aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/objective_c_plugin.cc
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-04-03 13:59:56 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-04-03 13:59:56 -0700
commit7f5dcc9c1a2f9164204e42401104f92020422689 (patch)
treebaf376435098e0721e3708ce312259394fd49bf1 /src/compiler/objective_c_plugin.cc
parent8827bc91eb1dbb6b30792c206085cb9a1a01b8a6 (diff)
Add missing '+'
Diffstat (limited to 'src/compiler/objective_c_plugin.cc')
-rw-r--r--src/compiler/objective_c_plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/objective_c_plugin.cc b/src/compiler/objective_c_plugin.cc
index 2581681999..dbd3785e99 100644
--- a/src/compiler/objective_c_plugin.cc
+++ b/src/compiler/objective_c_plugin.cc
@@ -118,7 +118,7 @@ class ObjectiveCGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator {
Write(context, file_name + ".pbrpc.h",
PreprocIfNot(kForwardDeclare, imports) + "\n" +
PreprocIfNot(kProtocolOnly, system_imports) + "\n" +
- class_declarations + "\n"
+ class_declarations + "\n" +
PreprocIfNot(kForwardDeclare, class_imports) +
"\n" + forward_declarations + "\n" + kNonNullBegin + "\n" +
protocols + "\n" + PreprocIfNot(kProtocolOnly, interfaces) +