Fix variance in line endings

committer: Jon Skeet <skeet@pobox.com>
pull/288/head
Jon Skeet 17 years ago committed by unknown
parent f92c545f49
commit 3c38991607
  1. 2
      src/google/protobuf/compiler/csharp/csharp_message.cc

@ -45,7 +45,7 @@ void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) {
// print group bodies so we cut off after the first line.
string def = field->DebugString();
printer->Print("// $def$\r\n",
"def", def.substr(0, def.find_first_of('\r\n')));
"def", def.substr(0, def.find_first_of('\n')));
}
struct FieldOrderingByNumber {

Loading…
Cancel
Save