aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/php_generator.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/php_generator.cc')
-rw-r--r--src/compiler/php_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/php_generator.cc b/src/compiler/php_generator.cc
index 1ff9520d7f..d9705e8077 100644
--- a/src/compiler/php_generator.cc
+++ b/src/compiler/php_generator.cc
@@ -164,7 +164,7 @@ grpc::string GenerateFile(const FileDescriptor* file,
grpc::string leading_comments = GetPHPComments(file, "//");
if (!leading_comments.empty()) {
out.Print("// Original file comments:\n");
- out.Print(leading_comments.c_str());
+ out.PrintRaw(leading_comments.c_str());
}
map<grpc::string, grpc::string> vars;