From b4e3c83b9fb059ea2080287ee2322399281d994c Mon Sep 17 00:00:00 2001 From: Andres Guedez Date: Tue, 20 Aug 2019 17:33:53 -0400 Subject: [PATCH 1/2] Add missing include (IWYU). Signed-off-by: Andres Guedez --- source/common/protobuf/message_validator_impl.cc | 1 - source/common/protobuf/message_validator_impl.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/protobuf/message_validator_impl.cc b/source/common/protobuf/message_validator_impl.cc index 4e921a0f0215..e07ae6ea8221 100644 --- a/source/common/protobuf/message_validator_impl.cc +++ b/source/common/protobuf/message_validator_impl.cc @@ -4,7 +4,6 @@ #include "common/common/assert.h" #include "common/common/hash.h" -#include "common/common/logger.h" #include "common/common/macros.h" #include "absl/strings/str_cat.h" diff --git a/source/common/protobuf/message_validator_impl.h b/source/common/protobuf/message_validator_impl.h index 2d5b3d41af0f..fd875a4f34d9 100644 --- a/source/common/protobuf/message_validator_impl.h +++ b/source/common/protobuf/message_validator_impl.h @@ -1,5 +1,6 @@ #pragma once +#include "common/common/logger.h" #include "envoy/protobuf/message_validator.h" #include "envoy/stats/stats.h" From dd74adabe674723d073258c7fcf1879571b59e51 Mon Sep 17 00:00:00 2001 From: Andres Guedez Date: Tue, 20 Aug 2019 23:17:46 -0400 Subject: [PATCH 2/2] Fix format. Signed-off-by: Andres Guedez --- source/common/protobuf/message_validator_impl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/common/protobuf/message_validator_impl.h b/source/common/protobuf/message_validator_impl.h index fd875a4f34d9..32d705fd44bf 100644 --- a/source/common/protobuf/message_validator_impl.h +++ b/source/common/protobuf/message_validator_impl.h @@ -1,9 +1,10 @@ #pragma once -#include "common/common/logger.h" #include "envoy/protobuf/message_validator.h" #include "envoy/stats/stats.h" +#include "common/common/logger.h" + #include "absl/container/flat_hash_set.h" namespace Envoy {