branch_tier.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-01-28 23:03:34 -06:00
parent 479cfafe5a
commit 40158677dc

View File

@ -14,8 +14,10 @@ BranchTier::BranchTier(toml::value const &v_)
for(auto const &branch : branches)
{
auto const &table = branch.as_table();
std::string type;
std::string s = table.at("type").as_string();
fmt::print("{}\n",s);
type = table.at("type");
fmt::print("{}\n",type);
}
}