From 0ddce95c7ed1dd3dd0a5df31138b58a87e11821b 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. (cherry-picked from ca952159e778f0ed927082832a195842f6229a94) --- 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 8b2cdb1e..525f5c66 100644 --- a/src/buildtool/file_system/git_cas.hpp +++ b/src/buildtool/file_system/git_cas.hpp @@ -58,6 +58,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. @@ -81,8 +86,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