diff options
author | Matthew Wu <maestromatt@gmail.com> | 2015-10-22 16:09:56 -0700 |
---|---|---|
committer | Matthew Wu <maestromatt@gmail.com> | 2015-10-22 16:09:56 -0700 |
commit | 187cfc57001b01a057ab76e6d31188bd822a449c (patch) | |
tree | c4965ff5d596cca99c07ba06a3756a928c8ca196 /src | |
parent | 1abf297fb9762df6d52735026d2dd670f540a947 (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')
-rw-r--r-- | src/google/protobuf/compiler/cpp/cpp_file.cc | 2 |
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"); } } |