branch2.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-01-31 21:19:29 -06:00
parent 90f41c7075
commit c28e30528f

View File

@ -13,7 +13,7 @@ Branch2::Branch2(toml::value const &v_)
: mode(Mode::RW) : mode(Mode::RW)
{ {
std::cout << v_ << '\n'; std::cout << v_ << '\n';
enabled = v_.at("enabled").as_boolean(); enabled = v_.at("enabled").as_boolean();
mode = Mode::_from_string(toml::find<std::string>(v_,"mode").c_str()); mode = Mode::_from_string(toml::find<std::string>(v_,"mode").c_str());
min_free_space = 0; min_free_space = 0;