branch_tier.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-07 20:37:05 -06:00
parent af1dc0bc06
commit 21dee5626d

View File

@ -54,8 +54,11 @@ BranchTier::BranchTier()
BranchTier::BranchTier(BranchTier &bt_)
{
for(auto cosnt &b : bt_._branches)
_branches.emplace_back(b);
Branch2 b;
b = bt_._branches[0];
}
BranchTier::BranchTier(toml::value const &v_)