diff options
author | 2017-08-09 08:45:49 +0200 | |
---|---|---|
committer | 2017-08-11 18:17:18 +0200 | |
commit | 3cbbe443845aa034b0b0db811a31b0e156f5e3ae (patch) | |
tree | 8df4709cfbcd40b7b3e9127577eb1a7c6dc21213 /src | |
parent | e9956df33d66e0ead04b9cdf91c7e1a8ff8599f8 (diff) |
Disable XML comment warnings in generated stubs
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/csharp_generator.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/csharp_generator.cc b/src/compiler/csharp_generator.cc index ab4a8a6aa3..bc3b0f24cd 100644 --- a/src/compiler/csharp_generator.cc +++ b/src/compiler/csharp_generator.cc @@ -670,6 +670,7 @@ grpc::string GetServices(const FileDescriptor *file, bool generate_client, out.Print(leading_comments.c_str()); } + out.Print("#pragma warning disable 1591\n"); out.Print("#region Designer generated code\n"); out.Print("\n"); out.Print("using System;\n"); |