浏览代码

Fix variance in line endings

committer: Jon Skeet <skeet@pobox.com>
Jon Skeet 17 年之前
父节点
当前提交
3c38991607
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/google/protobuf/compiler/csharp/csharp_message.cc

+ 1 - 1
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.
   // print group bodies so we cut off after the first line.
   string def = field->DebugString();
   string def = field->DebugString();
   printer->Print("// $def$\r\n",
   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 {
 struct FieldOrderingByNumber {