Commit 836d81a8 authored by dmaclach's avatar dmaclach Committed by Thomas Van Lenten

Fix up parameter name so decl matches defn

className -> class_name
parent 74956e1c
...@@ -120,12 +120,12 @@ string PROTOC_EXPORT OneofNameCapitalized(const OneofDescriptor* descriptor); ...@@ -120,12 +120,12 @@ string PROTOC_EXPORT OneofNameCapitalized(const OneofDescriptor* descriptor);
// Returns a symbol that can be used in C code to refer to an Objective C // Returns a symbol that can be used in C code to refer to an Objective C
// class without initializing the class. // class without initializing the class.
string PROTOC_EXPORT ObjCClassSymbolReference(const string& className); string PROTOC_EXPORT ObjCClassSymbolReference(const string& class_name);
// Defines a symbol that can be used in C code to refer to an Objective C // Defines a symbol that can be used in C code to refer to an Objective C
// class without initializing the class. Use a corresponding // class without initializing the class. Use a corresponding
// ObjCClassSymbolReference to reference it. // ObjCClassSymbolReference to reference it.
string PROTOC_EXPORT ObjCClassSymbolDefinition(const string& className); string PROTOC_EXPORT ObjCClassSymbolDefinition(const string& class_name);
inline bool HasFieldPresence(const FileDescriptor* file) { inline bool HasFieldPresence(const FileDescriptor* file) {
return file->syntax() != FileDescriptor::SYNTAX_PROTO3; return file->syntax() != FileDescriptor::SYNTAX_PROTO3;
......
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