From 7c546a8c4351545deae3a6af8d170703cdf17343 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 7 Feb 2024 21:05:00 -0600 Subject: [PATCH] branches2.hpp --- src/branches2.hpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/branches2.hpp b/src/branches2.hpp index d8ab61ea..92dea598 100644 --- a/src/branches2.hpp +++ b/src/branches2.hpp @@ -14,8 +14,8 @@ public: Branches2(toml::value const &); public: - uint64_t min_free_space; - + void copy_enabled_rw(Branches2 &); + public: int clonepath(ghc::filesystem::path basepath, ghc::filesystem::path fusepath); @@ -25,7 +25,10 @@ public: std::vector::iterator end() { return _branches.end(); } std::vector::const_iterator begin() const { return _branches.begin(); } std::vector::const_iterator end() const { return _branches.end(); } - + +public: + uint64_t min_free_space; + private: std::vector _branches; };