diff --git a/src/branch_tier.cpp b/src/branch_tier.cpp index 62c1ea11..78897189 100644 --- a/src/branch_tier.cpp +++ b/src/branch_tier.cpp @@ -58,9 +58,14 @@ BranchTier::BranchTier(toml::value const &v_) for(auto const &branch : branches) { + bool enabled; std::string type; auto const &table = branch.as_table(); + enabled = toml::find_or(v_,"enabled",false); + if(!enabled) + continue; + type = table.at("type").as_string(); if(type == "literal") l::load_branch_literal(table,_branches);