浏览代码

Merge pull request #904 from matthew-wu/master

Change the #include for any.h to use angle brackets instead of quotes
Jisi Liu 10 年之前
父节点
当前提交
dfae9e36c7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/google/protobuf/compiler/cpp/cpp_file.cc

+ 1 - 1
src/google/protobuf/compiler/cpp/cpp_file.cc

@@ -846,7 +846,7 @@ void FileGenerator::GenerateLibraryIncludes(io::Printer* printer) {
 
 
   if (IsAnyMessage(file_)) {
   if (IsAnyMessage(file_)) {
     printer->Print(
     printer->Print(
-      "#include \"google/protobuf/any.h\"\n");
+      "#include <google/protobuf/any.h>\n");
   }
   }
 }
 }