Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hpb_generator/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ cc_library(
"//src/google/protobuf",
"//src/google/protobuf/compiler:code_generator",
"@abseil-cpp//absl/log:absl_check",
"@abseil-cpp//absl/log:absl_log",
"@abseil-cpp//absl/strings",
"@abseil-cpp//absl/strings:string_view",
],
Expand Down
3 changes: 2 additions & 1 deletion hpb_generator/gen_enums.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#include "hpb_generator/gen_enums.h"

#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <deque>
#include <limits>
#include <string>
Expand All @@ -18,7 +20,6 @@
#include "absl/strings/str_join.h"
#include "absl/strings/string_view.h"
#include "hpb_generator/context.h"
#include "hpb_generator/gen_utils.h"
#include "hpb_generator/names.h"
#include "google/protobuf/descriptor.h"

Expand Down
1 change: 1 addition & 0 deletions hpb_generator/gen_extensions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "hpb_generator/gen_extensions.h"

#include <cassert>
#include <string>
#include <vector>

Expand Down
7 changes: 0 additions & 7 deletions hpb_generator/gen_repeated_fields.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,9 @@

#include "hpb_generator/gen_repeated_fields.h"

#include <string>
#include <vector>

#include "google/protobuf/descriptor.pb.h"
#include "absl/strings/string_view.h"
#include "hpb_generator/context.h"
#include "hpb_generator/gen_accessors.h"
#include "hpb_generator/gen_enums.h"
#include "hpb_generator/gen_extensions.h"
#include "hpb_generator/gen_utils.h"
#include "hpb_generator/names.h"
#include "google/protobuf/descriptor.h"
#include "upb_generator/c/names.h"
Expand Down
2 changes: 2 additions & 0 deletions hpb_generator/names.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
#include <string>

#include "absl/log/absl_check.h"
#include "absl/log/absl_log.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_replace.h"
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/code_generator.h"
#include "hpb_generator/keywords.h"
Expand Down
2 changes: 2 additions & 0 deletions hpb_generator/names.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
#include <string>

#include "google/protobuf/descriptor.pb.h"
#include "absl/strings/string_view.h"
#include "hpb_generator/context.h"
#include "google/protobuf/descriptor.h"

namespace google {
namespace protobuf {
Expand Down
Loading