branch_tier.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-01-28 23:03:45 -06:00
parent 40158677dc
commit 9d5c9edd1d

View File

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