Change the #include for any.h to use angle brackets instead of quotes, to be consistent with other protobuf library includes.

pull/904/head
Matthew Wu 9 years ago
parent 1abf297fb9
commit 187cfc5700
  1. 2
      src/google/protobuf/compiler/cpp/cpp_file.cc

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

Loading…
Cancel
Save