diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-13 12:54:18 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:06 +0100 |
commit | a86df51d15da0c55ff7aded9f05d2c23d828eda8 (patch) | |
tree | 5dd62aacbc2fa976b5564e08375e12b0be77ca4d /src/other_tools/root_maps/commit_git_map.cpp | |
parent | 23ea7c18fa594c0e53957a8f97893467c67c941f (diff) | |
download | justbuild-a86df51d15da0c55ff7aded9f05d2c23d828eda8.tar.gz |
other_tools/repo_map,root_maps: Implement IWYU suggestions
Diffstat (limited to 'src/other_tools/root_maps/commit_git_map.cpp')
-rw-r--r-- | src/other_tools/root_maps/commit_git_map.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/other_tools/root_maps/commit_git_map.cpp b/src/other_tools/root_maps/commit_git_map.cpp index 8f96eb82..d877772e 100644 --- a/src/other_tools/root_maps/commit_git_map.cpp +++ b/src/other_tools/root_maps/commit_git_map.cpp @@ -14,21 +14,29 @@ #include "src/other_tools/root_maps/commit_git_map.hpp" -#include <algorithm> +#include <filesystem> +#include <memory> #include <optional> #include <string> #include "fmt/core.h" -#include "src/buildtool/common/artifact_digest_factory.hpp" -#include "src/buildtool/crypto/hash_function.hpp" +#include "src/buildtool/common/artifact.hpp" +#include "src/buildtool/common/artifact_digest.hpp" #include "src/buildtool/file_system/file_root.hpp" #include "src/buildtool/file_system/file_system_manager.hpp" +#include "src/buildtool/file_system/git_cas.hpp" +#include "src/buildtool/file_system/git_repo.hpp" +#include "src/buildtool/file_system/git_types.hpp" +#include "src/buildtool/file_system/object_type.hpp" #include "src/buildtool/multithreading/task_system.hpp" +#include "src/buildtool/progress_reporting/task_tracker.hpp" #include "src/buildtool/storage/fs_utils.hpp" +#include "src/other_tools/git_operations/git_ops_types.hpp" #include "src/other_tools/git_operations/git_repo_remote.hpp" #include "src/other_tools/root_maps/root_utils.hpp" -#include "src/other_tools/utils/curl_url_handle.hpp" +#include "src/utils/cpp/expected.hpp" #include "src/utils/cpp/path.hpp" +#include "src/utils/cpp/tmp_dir.hpp" namespace { |