Skip to content

Commit

Permalink
Add missing header files (#12581)
Browse files Browse the repository at this point in the history
Signed-off-by: Elisha Ziskind <eziskind@google.com>
  • Loading branch information
eziskind authored Aug 11, 2020
1 parent 04de1cf commit 7cce05a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions source/common/http/async_client_utility.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "common/http/async_client_utility.h"

#include "common/common/assert.h"

namespace Envoy {
namespace Http {

Expand Down
4 changes: 3 additions & 1 deletion source/common/network/filter_matcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include "envoy/network/filter.h"

#include "common/common/assert.h"

#include "absl/strings/str_format.h"

namespace Envoy {
Expand Down Expand Up @@ -50,4 +52,4 @@ bool ListenerFilterAndMatcher::matches(ListenerFilterCallbacks& cb) const {
}

} // namespace Network
} // namespace Envoy
} // namespace Envoy
3 changes: 3 additions & 0 deletions source/common/signal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ envoy_cc_library(
name = "fatal_error_handler_lib",
srcs = ["fatal_error_handler.cc"],
hdrs = ["fatal_error_handler.h"],
deps = [
"//source/common/common:macros",
],
)

envoy_cc_library(
Expand Down
2 changes: 2 additions & 0 deletions source/common/signal/fatal_error_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include <list>

#include "common/common/macros.h"

#include "absl/base/attributes.h"
#include "absl/synchronization/mutex.h"

Expand Down

0 comments on commit 7cce05a

Please sign in to comment.