aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/cpp/cpp_file.cc
diff options
context:
space:
mode:
authorGravatar Matthew Wu <maestromatt@gmail.com>2015-10-22 16:09:56 -0700
committerGravatar Matthew Wu <maestromatt@gmail.com>2015-10-22 16:09:56 -0700
commit187cfc57001b01a057ab76e6d31188bd822a449c (patch)
treec4965ff5d596cca99c07ba06a3756a928c8ca196 /src/google/protobuf/compiler/cpp/cpp_file.cc
parent1abf297fb9762df6d52735026d2dd670f540a947 (diff)
Change the #include for any.h to use angle brackets instead of quotes, to be consistent with other protobuf library includes.
Diffstat (limited to 'src/google/protobuf/compiler/cpp/cpp_file.cc')
-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");
}
}