From 7cce05af396bcd52e140b34a77de8e520bd1f457 Mon Sep 17 00:00:00 2001 From: Elisha Ziskind Date: Mon, 10 Aug 2020 22:03:57 -0400 Subject: [PATCH] Add missing header files (#12581) Signed-off-by: Elisha Ziskind --- source/common/http/async_client_utility.cc | 2 ++ source/common/network/filter_matcher.cc | 4 +++- source/common/signal/BUILD | 3 +++ source/common/signal/fatal_error_handler.cc | 2 ++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/source/common/http/async_client_utility.cc b/source/common/http/async_client_utility.cc index 17124f06fb34..664a0fc0c651 100644 --- a/source/common/http/async_client_utility.cc +++ b/source/common/http/async_client_utility.cc @@ -1,5 +1,7 @@ #include "common/http/async_client_utility.h" +#include "common/common/assert.h" + namespace Envoy { namespace Http { diff --git a/source/common/network/filter_matcher.cc b/source/common/network/filter_matcher.cc index 6668850db44e..7b2831b8a55e 100644 --- a/source/common/network/filter_matcher.cc +++ b/source/common/network/filter_matcher.cc @@ -2,6 +2,8 @@ #include "envoy/network/filter.h" +#include "common/common/assert.h" + #include "absl/strings/str_format.h" namespace Envoy { @@ -50,4 +52,4 @@ bool ListenerFilterAndMatcher::matches(ListenerFilterCallbacks& cb) const { } } // namespace Network -} // namespace Envoy \ No newline at end of file +} // namespace Envoy diff --git a/source/common/signal/BUILD b/source/common/signal/BUILD index 3008c01cb50e..2a18144c87db 100644 --- a/source/common/signal/BUILD +++ b/source/common/signal/BUILD @@ -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( diff --git a/source/common/signal/fatal_error_handler.cc b/source/common/signal/fatal_error_handler.cc index b215d158b158..125093e3c589 100644 --- a/source/common/signal/fatal_error_handler.cc +++ b/source/common/signal/fatal_error_handler.cc @@ -2,6 +2,8 @@ #include +#include "common/common/macros.h" + #include "absl/base/attributes.h" #include "absl/synchronization/mutex.h"