diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-13 12:26:27 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:06 +0100 |
commit | 23ea7c18fa594c0e53957a8f97893467c67c941f (patch) | |
tree | 6cb7a370dd00f5e9ca66fbf68c35b7533e1e3846 /src/other_tools/ops_maps/archive_fetch_map.cpp | |
parent | 3bc1d8aa17339154c9de88e7ee29ff533041cb6d (diff) | |
download | justbuild-23ea7c18fa594c0e53957a8f97893467c67c941f.tar.gz |
other_tools/ops_maps: Implement IWYU suggestions
Also follow-up changes to ensure build success.
Diffstat (limited to 'src/other_tools/ops_maps/archive_fetch_map.cpp')
-rw-r--r-- | src/other_tools/ops_maps/archive_fetch_map.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/other_tools/ops_maps/archive_fetch_map.cpp b/src/other_tools/ops_maps/archive_fetch_map.cpp index 91d71ce6..2732d494 100644 --- a/src/other_tools/ops_maps/archive_fetch_map.cpp +++ b/src/other_tools/ops_maps/archive_fetch_map.cpp @@ -14,12 +14,16 @@ #include "src/other_tools/ops_maps/archive_fetch_map.hpp" +#include <memory> +#include <optional> #include <string> +#include <vector> #include "fmt/core.h" -#include "src/buildtool/file_system/file_storage.hpp" +#include "src/buildtool/common/artifact.hpp" +#include "src/buildtool/common/artifact_digest.hpp" #include "src/buildtool/file_system/file_system_manager.hpp" -#include "src/other_tools/just_mr/utils.hpp" +#include "src/buildtool/file_system/object_type.hpp" namespace { |