diff options
Diffstat (limited to 'src/compiler/objective_c_generator.h')
-rw-r--r-- | src/compiler/objective_c_generator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/objective_c_generator.h b/src/compiler/objective_c_generator.h index e912a52415..2337abaf6a 100644 --- a/src/compiler/objective_c_generator.h +++ b/src/compiler/objective_c_generator.h @@ -23,20 +23,20 @@ namespace grpc_objective_c_generator { -using ::grpc::protobuf::ServiceDescriptor; using ::grpc::protobuf::FileDescriptor; +using ::grpc::protobuf::ServiceDescriptor; using ::grpc::string; // Returns forward declaration of classes in the generated header file. -string GetAllMessageClasses(const FileDescriptor *file); +string GetAllMessageClasses(const FileDescriptor* file); // Returns the content to be included in the "global_scope" insertion point of // the generated header file. -string GetHeader(const ServiceDescriptor *service); +string GetHeader(const ServiceDescriptor* service); // Returns the content to be included in the "global_scope" insertion point of // the generated implementation file. -string GetSource(const ServiceDescriptor *service); +string GetSource(const ServiceDescriptor* service); } // namespace grpc_objective_c_generator |