diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-15 17:12:15 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-17 16:27:50 +0100 |
commit | 65944566d8d3ae81d3dc3acb8c82944f5698ca5d (patch) | |
tree | 9700c15732d21dc03fd2f33c600e2ead80694c2c /src/other_tools/ops_maps/git_update_map.hpp | |
parent | ebe7695ee5803dd3c2bb4f22f5e12d776c985d56 (diff) | |
download | justbuild-65944566d8d3ae81d3dc3acb8c82944f5698ca5d.tar.gz |
structure cleanup: move remote operations of GitRepo to other_tools...
...in order to not include unwanted dependencies in just proper.
The new class extends the GitRepo class used for just's Git tree
operations and gets used in all of just-mr's async maps.
Diffstat (limited to 'src/other_tools/ops_maps/git_update_map.hpp')
-rw-r--r-- | src/other_tools/ops_maps/git_update_map.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/ops_maps/git_update_map.hpp b/src/other_tools/ops_maps/git_update_map.hpp index a69057bf..d4804545 100644 --- a/src/other_tools/ops_maps/git_update_map.hpp +++ b/src/other_tools/ops_maps/git_update_map.hpp @@ -15,8 +15,8 @@ #ifndef INCLUDED_SRC_OTHER_TOOLS_OPS_MAPS_GIT_UPDATE_MAP_HPP #define INCLUDED_SRC_OTHER_TOOLS_OPS_MAPS_GIT_UPDATE_MAP_HPP -#include "src/buildtool/file_system/git_repo.hpp" #include "src/buildtool/multithreading/async_map_consumer.hpp" +#include "src/other_tools/git_operations/git_repo_remote.hpp" #include "src/utils/cpp/hash_combine.hpp" using StringPair = std::pair<std::string, std::string>; |