Commit 3bdc1356 authored by kenton@google.com's avatar kenton@google.com

Avoid an "unused parameter" warning when using high warning levels.

parent 7b29a269
......@@ -219,8 +219,8 @@ void ServiceGenerator::GenerateNotImplementedMethods(io::Printer* printer) {
printer->Print(sub_vars,
"void $classname$::$name$(::google::protobuf::RpcController* controller,\n"
" const $input_type$* request,\n"
" $output_type$* response,\n"
" const $input_type$*,\n"
" $output_type$*,\n"
" ::google::protobuf::Closure* done) {\n"
" controller->SetFailed(\"Method $name$() not implemented.\");\n"
" done->Run();\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment