aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/objective_c_generator.cc
diff options
context:
space:
mode:
authorGravatar David G. Quintas <dgq@google.com>2017-11-27 12:27:49 -0800
committerGravatar GitHub <noreply@github.com>2017-11-27 12:27:49 -0800
commit333dd3e1ad9acdccb10a7536590317bf58102ad9 (patch)
treedd54a40337438cf7537903b8921116f288ef125d /src/compiler/objective_c_generator.cc
parent62a53ee55a23132526ff780fcb8aae7d155db135 (diff)
Revert "Do not interpolate variables in leading comments."
Diffstat (limited to 'src/compiler/objective_c_generator.cc')
-rw-r--r--src/compiler/objective_c_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/objective_c_generator.cc b/src/compiler/objective_c_generator.cc
index 8fe30e97e9..349f1dc281 100644
--- a/src/compiler/objective_c_generator.cc
+++ b/src/compiler/objective_c_generator.cc
@@ -65,7 +65,7 @@ static void PrintAllComments(const DescriptorType* desc, Printer* printer) {
printer->Print(" * ");
size_t start_pos = it->find_first_not_of(' ');
if (start_pos != grpc::string::npos) {
- printer->PrintRaw(it->c_str() + start_pos);
+ printer->Print(it->c_str() + start_pos);
}
printer->Print("\n");
}