diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-12-16 13:37:08 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-12-19 16:17:46 +0100 |
commit | 0d1223d10057c563f019fd4699a82e0af9da9111 (patch) | |
tree | 0771e45bbf0cd1b37744595affcd0ba71eb29da1 /src/buildtool/execution_api/serve/mr_git_api.hpp | |
parent | 0042c50301d2e959e9e7487f0f4ab37cef245979 (diff) | |
download | justbuild-0d1223d10057c563f019fd4699a82e0af9da9111.tar.gz |
Remove unneeded compat_storage
Diffstat (limited to 'src/buildtool/execution_api/serve/mr_git_api.hpp')
-rw-r--r-- | src/buildtool/execution_api/serve/mr_git_api.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/buildtool/execution_api/serve/mr_git_api.hpp b/src/buildtool/execution_api/serve/mr_git_api.hpp index 8b0d8d9d..31f723bf 100644 --- a/src/buildtool/execution_api/serve/mr_git_api.hpp +++ b/src/buildtool/execution_api/serve/mr_git_api.hpp @@ -30,7 +30,6 @@ #include "src/buildtool/execution_api/common/execution_api.hpp" #include "src/buildtool/execution_engine/dag/dag.hpp" #include "src/buildtool/storage/config.hpp" -#include "src/buildtool/storage/storage.hpp" /// \brief Multi-repo-specific implementation of the abstract Execution API. /// Handles interaction between the Git CAS and another api, irrespective of the @@ -41,7 +40,6 @@ class MRGitApi final : public IExecutionApi { MRGitApi(gsl::not_null<RepositoryConfig const*> const& repo_config, gsl::not_null<StorageConfig const*> const& native_storage_config, StorageConfig const* compatible_storage_config = nullptr, - Storage const* compatible_storage = nullptr, IExecutionApi const* compatible_local_api = nullptr) noexcept; /// \brief Not supported. @@ -136,7 +134,6 @@ class MRGitApi final : public IExecutionApi { // retain references to needed storages and configs gsl::not_null<StorageConfig const*> native_storage_config_; StorageConfig const* compat_storage_config_; - Storage const* compat_storage_; // an api accessing compatible storage, used purely to communicate with a // compatible remote; only instantiated if in compatible mode |