From 450fdaa0dd23b44436c8d15cc6890a8a5701a41e Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 28 Jan 2024 23:29:59 -0600 Subject: [PATCH] branch_tier.cpp --- src/branch_tier.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/branch_tier.cpp b/src/branch_tier.cpp index 2dee8f92..4fa4391b 100644 --- a/src/branch_tier.cpp +++ b/src/branch_tier.cpp @@ -28,11 +28,11 @@ BranchTier::BranchTier(toml::value const &v_) type = table.at("type").as_string(); if(type == "literal") - l::load_literal_branch(table); + l::load_branch_literal(table,_branches); else if(type == "glob") - ; + l::load_branch_glob(table,_branches); else if(type == "scan") - ; + l::load_branch_scan(table,_branches); fmt::print("{}\n",type); }