| Index: third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc
|
| diff --git a/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc b/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc
|
| index b63bc0de6322bd307ee1f756ada42b919e605784..7a774a0922dae58481ea287ac9527688d38bca62 100644
|
| --- a/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc
|
| +++ b/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc
|
| @@ -83,12 +83,16 @@ void EnumFieldGenerator::GenerateCFunctionDeclarations(
|
|
|
| printer->Print(
|
| variables_,
|
| - "/// Fetches the raw value of a @c $owning_message_class$'s @c $name$ property, even\n"
|
| - "/// if the value was not defined by the enum at the time the code was generated.\n"
|
| + "/**\n"
|
| + " * Fetches the raw value of a @c $owning_message_class$'s @c $name$ property, even\n"
|
| + " * if the value was not defined by the enum at the time the code was generated.\n"
|
| + " **/\n"
|
| "int32_t $owning_message_class$_$capitalized_name$_RawValue($owning_message_class$ *message);\n"
|
| - "/// Sets the raw value of an @c $owning_message_class$'s @c $name$ property, allowing\n"
|
| - "/// it to be set to a value that was not defined by the enum at the time the code\n"
|
| - "/// was generated.\n"
|
| + "/**\n"
|
| + " * Sets the raw value of an @c $owning_message_class$'s @c $name$ property, allowing\n"
|
| + " * it to be set to a value that was not defined by the enum at the time the code\n"
|
| + " * was generated.\n"
|
| + " **/\n"
|
| "void Set$owning_message_class$_$capitalized_name$_RawValue($owning_message_class$ *message, int32_t value);\n"
|
| "\n");
|
| }
|
|
|