Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #include in cc files #2471

Merged
merged 1 commit into from Dec 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion conformance/conformance_cpp.cc
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
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
@@ -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