diff --git a/src/google/protobuf/compiler/objectivec/objectivec_field.cc b/src/google/protobuf/compiler/objectivec/objectivec_field.cc index 9d5fa9933a..eb23fee19f 100644 --- a/src/google/protobuf/compiler/objectivec/objectivec_field.cc +++ b/src/google/protobuf/compiler/objectivec/objectivec_field.cc @@ -246,7 +246,7 @@ void FieldGenerator::SetExtraRuntimeHasBitsBase(int index_base) { } void FieldGenerator::SetOneofIndexBase(int index_base) { - const OneofDescriptor *oneof = descriptor_->real_containing_oneof(); + const OneofDescriptor* oneof = descriptor_->real_containing_oneof(); if (oneof != NULL) { int index = oneof->index() + index_base; // Flip the sign to mark it as a oneof. diff --git a/src/google/protobuf/compiler/objectivec/objectivec_file.cc b/src/google/protobuf/compiler/objectivec/objectivec_file.cc index 417733ef47..be2be2cdec 100644 --- a/src/google/protobuf/compiler/objectivec/objectivec_file.cc +++ b/src/google/protobuf/compiler/objectivec/objectivec_file.cc @@ -185,22 +185,22 @@ bool IsDirectDependency(const FileDescriptor* dep, const FileDescriptor* file) { } // namespace -FileGenerator::FileGenerator(const FileDescriptor *file, const Options& options) +FileGenerator::FileGenerator(const FileDescriptor* file, const Options& options) : file_(file), root_class_name_(FileClassName(file)), is_bundled_proto_(IsProtobufLibraryBundledProtoFile(file)), options_(options) { for (int i = 0; i < file_->enum_type_count(); i++) { - EnumGenerator *generator = new EnumGenerator(file_->enum_type(i)); + EnumGenerator* generator = new EnumGenerator(file_->enum_type(i)); enum_generators_.emplace_back(generator); } for (int i = 0; i < file_->message_type_count(); i++) { - MessageGenerator *generator = + MessageGenerator* generator = new MessageGenerator(root_class_name_, file_->message_type(i), options_); message_generators_.emplace_back(generator); } for (int i = 0; i < file_->extension_count(); i++) { - ExtensionGenerator *generator = + ExtensionGenerator* generator = new ExtensionGenerator(root_class_name_, file_->extension(i)); extension_generators_.emplace_back(generator); } @@ -208,7 +208,7 @@ FileGenerator::FileGenerator(const FileDescriptor *file, const Options& options) FileGenerator::~FileGenerator() {} -void FileGenerator::GenerateHeader(io::Printer *printer) { +void FileGenerator::GenerateHeader(io::Printer* printer) { std::vector headers; // Generated files bundled with the library get minimal imports, everything // else gets the wrapper so everything is usable. @@ -336,7 +336,7 @@ void FileGenerator::GenerateHeader(io::Printer *printer) { "// @@protoc_insertion_point(global_scope)\n"); } -void FileGenerator::GenerateSource(io::Printer *printer) { +void FileGenerator::GenerateSource(io::Printer* printer) { // #import the runtime support. std::vector headers; headers.push_back("GPBProtocolBuffers_RuntimeSupport.h"); @@ -381,7 +381,7 @@ void FileGenerator::GenerateSource(io::Printer *printer) { // imported so it can get merged into the root's extensions registry. // See the Note by CollectMinimalFileDepsContainingExtensions before // changing this. - for (std::vector::iterator iter = + for (std::vector::iterator iter = deps_with_extensions.begin(); iter != deps_with_extensions.end(); ++iter) { if (!IsDirectDependency(*iter, file_)) { @@ -498,7 +498,7 @@ void FileGenerator::GenerateSource(io::Printer *printer) { } else { printer->Print( "// Merge in the imports (direct or indirect) that defined extensions.\n"); - for (std::vector::iterator iter = + for (std::vector::iterator iter = deps_with_extensions.begin(); iter != deps_with_extensions.end(); ++iter) { const std::string root_class_name(FileClassName((*iter))); diff --git a/src/google/protobuf/compiler/objectivec/objectivec_helpers.h b/src/google/protobuf/compiler/objectivec/objectivec_helpers.h index ce2d92cf3c..dd422695aa 100644 --- a/src/google/protobuf/compiler/objectivec/objectivec_helpers.h +++ b/src/google/protobuf/compiler/objectivec/objectivec_helpers.h @@ -283,9 +283,9 @@ class PROTOC_EXPORT ImportWriter { ~ImportWriter(); void AddFile(const FileDescriptor* file, const std::string& header_extension); - void Print(io::Printer *printer) const; + void Print(io::Printer* printer) const; - static void PrintRuntimeImports(io::Printer *printer, + static void PrintRuntimeImports(io::Printer* printer, const std::vector& header_to_import, const std::string& runtime_import_prefix, bool default_cpp_symbol = false); diff --git a/src/google/protobuf/compiler/objectivec/objectivec_message.cc b/src/google/protobuf/compiler/objectivec/objectivec_message.cc index 917cc64861..3a00113f32 100644 --- a/src/google/protobuf/compiler/objectivec/objectivec_message.cc +++ b/src/google/protobuf/compiler/objectivec/objectivec_message.cc @@ -343,7 +343,7 @@ void MessageGenerator::GenerateMessageHeader(io::Printer* printer) { std::vector seen_oneofs(oneof_generators_.size(), 0); for (int i = 0; i < descriptor_->field_count(); i++) { const FieldDescriptor* field = descriptor_->field(i); - const OneofDescriptor *oneof = field->real_containing_oneof(); + const OneofDescriptor* oneof = field->real_containing_oneof(); if (oneof) { const int oneof_index = oneof->index(); if (!seen_oneofs[oneof_index]) {