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 7a774a0922dae58481ea287ac9527688d38bca62..b63bc0de6322bd307ee1f756ada42b919e605784 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,16 +83,12 @@ void EnumFieldGenerator::GenerateCFunctionDeclarations( |
printer->Print( |
variables_, |
- "/**\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" |
+ "/// 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" |
"int32_t $owning_message_class$_$capitalized_name$_RawValue($owning_message_class$ *message);\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" |
+ "/// 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" |
"void Set$owning_message_class$_$capitalized_name$_RawValue($owning_message_class$ *message, int32_t value);\n" |
"\n"); |
} |