Skip to content

Commit

Permalink
Fix #include in cc files
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrianceau committed Dec 9, 2016
1 parent 243ebec commit e3da722
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conformance/conformance_cpp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <unistd.h>

#include "conformance.pb.h"
#include "google/protobuf/test_messages_proto3.pb.h"
#include <google/protobuf/test_messages_proto3.pb.h>
#include <google/protobuf/util/json_util.h>
#include <google/protobuf/util/type_resolver_util.h>

Expand Down
2 changes: 1 addition & 1 deletion conformance/conformance_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include "conformance.pb.h"
#include "conformance_test.h"
#include "google/protobuf/test_messages_proto3.pb.h"
#include <google/protobuf/test_messages_proto3.pb.h>

#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/stringprintf.h>
Expand Down
2 changes: 1 addition & 1 deletion src/google/protobuf/compiler/js/well_known_types_embed.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "google/protobuf/compiler/js/well_known_types_embed.h"
#include <google/protobuf/compiler/js/well_known_types_embed.h>
struct FileToc well_known_types_js[] = {
{"any.js",
"// Protocol Buffers - Google's data interchange format\n"
Expand Down

0 comments on commit e3da722

Please sign in to comment.