branch2.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-01-29 00:02:21 -06:00
parent e4717dcbe6
commit 0a4a9ec7ce

View File

@ -11,6 +11,6 @@ Branch2::Branch2(toml::value const &v_)
: mode(Mode::RW) : mode(Mode::RW)
{ {
enabled = v_.at("enabled").as_boolean(); enabled = v_.at("enabled").as_boolean();
mode = Mode::RW; mode = Mode::RO;
// mode = v_.at("mode").as_string(); // mode = v_.at("mode").as_string();
} }