aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/csharp_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/csharp_generator.cc
parent62a53ee55a23132526ff780fcb8aae7d155db135 (diff)
Revert "Do not interpolate variables in leading comments."
Diffstat (limited to 'src/compiler/csharp_generator.cc')
-rw-r--r--src/compiler/csharp_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/csharp_generator.cc b/src/compiler/csharp_generator.cc
index 40fe0b054a..e0957bf9bb 100644
--- a/src/compiler/csharp_generator.cc
+++ b/src/compiler/csharp_generator.cc
@@ -666,7 +666,7 @@ grpc::string GetServices(const FileDescriptor* file, bool generate_client,
grpc::string leading_comments = GetCsharpComments(file, true);
if (!leading_comments.empty()) {
out.Print("// Original file comments:\n");
- out.PrintRaw(leading_comments.c_str());
+ out.Print(leading_comments.c_str());
}
out.Print("#pragma warning disable 1591\n");