From 223519a222856d7c1074a32e978d5dfb281837fe Mon Sep 17 00:00:00 2001 From: Christian Blichmann Date: Thu, 31 Oct 2024 06:34:38 -0700 Subject: [PATCH] Reader: Fix missing include for `absl::AsciiStrToLower` PiperOrigin-RevId: 691780426 Change-Id: I32733a384f6e10aad2f241730b1c7a69d64e252e --- reader/flow_graph.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reader/flow_graph.cc b/reader/flow_graph.cc index 15347036..b1156cbb 100644 --- a/reader/flow_graph.cc +++ b/reader/flow_graph.cc @@ -16,14 +16,21 @@ #include #include // NOLINT +#include #include +#include #include +#include #include #include "third_party/absl/log/check.h" #include "third_party/absl/log/log.h" #include "third_party/absl/memory/memory.h" +#include "third_party/absl/strings/ascii.h" +#include "third_party/absl/types/optional.h" +#include "third_party/zynamics/binexport/architectures.h" #include "third_party/zynamics/binexport/reader/graph_utility.h" +#include "third_party/zynamics/binexport/reader/instruction.h" #include "third_party/zynamics/binexport/util/types.h" namespace security::binexport {