From f8d7747ddd0f947c74d137f843cc32bde0e91eb3 Mon Sep 17 00:00:00 2001 From: murgatroid99 <mlumish@google.com> Date: Tue, 19 Apr 2016 12:43:06 -0700 Subject: [PATCH] Fixed minor bug with Node generator --- src/compiler/node_generator.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compiler/node_generator.cc b/src/compiler/node_generator.cc index 7605b64531..03e1314f7b 100644 --- a/src/compiler/node_generator.cc +++ b/src/compiler/node_generator.cc @@ -97,10 +97,10 @@ grpc::string GetRelativePath(const grpc::string& from_file, * as a map of fully qualified message type name to message descriptor */ map<grpc::string, const Descriptor*> GetAllMessages(const FileDescriptor *file) { map<grpc::string, const Descriptor*> message_types; - for (int i = 0; i < file->service_count(); i++) { - const ServiceDescriptor* service = file->service(i); - for (int j = 0; j < service->method_count(); j++) { - const MethodDescriptor* method = service->method(i); + for (int service_num = 0; service_num < file->service_count(); service_num++) { + const ServiceDescriptor* service = file->service(service_num); + for (int method_num = 0; method_num < service->method_count(); method_num++) { + const MethodDescriptor* method = service->method(method_num); const Descriptor* input_type = method->input_type(); const Descriptor* output_type = method->output_type(); message_types[input_type->name()] = input_type; -- GitLab