diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-12-04 14:59:34 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-12-05 11:08:08 +0100 |
commit | ca952159e778f0ed927082832a195842f6229a94 (patch) | |
tree | 368e62beeb0c1a5085dc07a37087355320e08d52 /src/buildtool/file_system/git_repo.hpp | |
parent | 9a164558010af84d834dee86f1929bd6582a1ccb (diff) | |
download | justbuild-ca952159e778f0ed927082832a195842f6229a94.tar.gz |
GitCAS: remove friend GitRepo
...and access internal state via getters.
Diffstat (limited to 'src/buildtool/file_system/git_repo.hpp')
-rw-r--r-- | src/buildtool/file_system/git_repo.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/buildtool/file_system/git_repo.hpp b/src/buildtool/file_system/git_repo.hpp index 8fb65379..798f9ffb 100644 --- a/src/buildtool/file_system/git_repo.hpp +++ b/src/buildtool/file_system/git_repo.hpp @@ -326,13 +326,6 @@ class GitRepo { /// \brief Open real repository at given location. explicit GitRepo(std::filesystem::path const& repo_path) noexcept; - [[nodiscard]] auto GetGitRepository() const& noexcept -> git_repository&; - - [[nodiscard]] auto GetGitPath() const noexcept - -> std::filesystem::path const&; - - [[nodiscard]] auto GetGitOdb() const& noexcept -> git_odb&; - using StoreDirEntryFunc = std::function<bool(std::filesystem::path const&, ObjectType type)>; |