Skip to content
Snippets Groups Projects
Commit 739c9987 authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Codegen GRXWriter* instead of id<GRXWriter>

parent a8c5d968
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ void PrintMethodSignature(Printer *printer, const MethodDescriptor *method, ...@@ -67,7 +67,7 @@ void PrintMethodSignature(Printer *printer, const MethodDescriptor *method,
printer->Print(vars, "- ($return_type$)$method_name$With"); printer->Print(vars, "- ($return_type$)$method_name$With");
if (method->client_streaming()) { if (method->client_streaming()) {
printer->Print("RequestsWriter:(id<GRXWriter>)requestWriter"); printer->Print("RequestsWriter:(GRXWriter *)requestWriter");
} else { } else {
printer->Print(vars, "Request:($request_class$ *)request"); printer->Print(vars, "Request:($request_class$ *)request");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment