From ca952159e778f0ed927082832a195842f6229a94 Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Wed, 4 Dec 2024 14:59:34 +0100 Subject: GitCAS: remove friend GitRepo ...and access internal state via getters. --- src/buildtool/file_system/git_cas.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/buildtool/file_system/git_cas.hpp') diff --git a/src/buildtool/file_system/git_cas.hpp b/src/buildtool/file_system/git_cas.hpp index 37f197f0..0b104f54 100644 --- a/src/buildtool/file_system/git_cas.hpp +++ b/src/buildtool/file_system/git_cas.hpp @@ -55,6 +55,11 @@ class GitCAS { return repo_.get(); } + [[nodiscard]] auto GetPath() const noexcept + -> std::filesystem::path const& { + return git_path_; + } + /// \brief Read object from CAS. /// \param id The object id. /// \param is_hex_id Specify whether `id` is hex string or raw. @@ -78,8 +83,6 @@ class GitCAS { repository_closer}; // git folder path of repo std::filesystem::path git_path_; - - friend class GitRepo; // allow access to ODB }; #endif // INCLUDED_SRC_BUILDTOOL_FILE_SYSTEM_GIT_CAS_HPP -- cgit v1.2.3