aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJisi Liu <liujisi@google.com>2015-10-23 10:13:34 -0700
committerJisi Liu <liujisi@google.com>2015-10-23 10:13:34 -0700
commitdfae9e36c7c45b02f39463152c4f6560622d4a78 (patch)
treec4965ff5d596cca99c07ba06a3756a928c8ca196
parent1abf297fb9762df6d52735026d2dd670f540a947 (diff)
parent187cfc57001b01a057ab76e6d31188bd822a449c (diff)
downloadprotobuf-dfae9e36c7c45b02f39463152c4f6560622d4a78.tar.gz
protobuf-dfae9e36c7c45b02f39463152c4f6560622d4a78.tar.bz2
protobuf-dfae9e36c7c45b02f39463152c4f6560622d4a78.zip
Merge pull request #904 from matthew-wu/master
Change the #include for any.h to use angle brackets instead of quotes
-rw-r--r--src/google/protobuf/compiler/cpp/cpp_file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/cpp/cpp_file.cc b/src/google/protobuf/compiler/cpp/cpp_file.cc
index 8e8bd8b7..4906985d 100644
--- a/src/google/protobuf/compiler/cpp/cpp_file.cc
+++ b/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");
}
}