diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-07-16 22:07:54 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-07-17 12:20:07 -0700 |
commit | 739c99879a2c5feae841bc96c706ca20051fa2d2 (patch) | |
tree | ad59085faccf18d3d147a1d180ecdb759494e898 /src | |
parent | a8c5d968934d11abbe143110ff24bd55c609f834 (diff) |
Codegen GRXWriter* instead of id<GRXWriter>
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/objective_c_generator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/objective_c_generator.cc b/src/compiler/objective_c_generator.cc index 2a74a3b340..711d0d5870 100644 --- a/src/compiler/objective_c_generator.cc +++ b/src/compiler/objective_c_generator.cc @@ -67,7 +67,7 @@ void PrintMethodSignature(Printer *printer, const MethodDescriptor *method, printer->Print(vars, "- ($return_type$)$method_name$With"); if (method->client_streaming()) { - printer->Print("RequestsWriter:(id<GRXWriter>)requestWriter"); + printer->Print("RequestsWriter:(GRXWriter *)requestWriter"); } else { printer->Print(vars, "Request:($request_class$ *)request"); } |