diff options
author | Vijay Pai <vpai@google.com> | 2016-10-18 12:15:08 -0700 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2016-10-18 12:15:08 -0700 |
commit | 9fa9315d62c3163a93eeae2b3d3bb70231567b83 (patch) | |
tree | 49968018548e4a294026a9f95b8ea5363efceb0e /src/compiler | |
parent | 23c5b812687d0ebb86ed86d64416b232f8771e56 (diff) | |
parent | 948f95b2ce4204f859c867207bd991d30ca17ee7 (diff) |
Merge remote-tracking branch 'upstream/master' into fc_1dstream
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/csharp_generator.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler/csharp_generator.cc b/src/compiler/csharp_generator.cc index 591e5ae3d4..48157033db 100644 --- a/src/compiler/csharp_generator.cc +++ b/src/compiler/csharp_generator.cc @@ -495,6 +495,9 @@ void GenerateClientStub(Printer *out, const ServiceDescriptor *service) { // override NewInstance method out->Print( + "/// <summary>Creates a new instance of client from given " + "<c>ClientBaseConfiguration</c>.</summary>\n"); + out->Print( "protected override $name$ NewInstance(ClientBaseConfiguration " "configuration)\n", "name", GetClientClassName(service)); |