Remove unused parameter

This commit is contained in:
Jason Turner 2015-01-13 17:07:46 -07:00
parent 497dd89046
commit 26bf531cab

View File

@ -423,7 +423,7 @@ namespace chaiscript
} else { } else {
try { try {
return std::pair<std::string, Type_Info>(t_node->children[0]->text, t_ss.get_type(t_node->children[0]->text)); return std::pair<std::string, Type_Info>(t_node->children[0]->text, t_ss.get_type(t_node->children[0]->text));
} catch (const std::range_error &t_err) { } catch (const std::range_error &) {
return std::pair<std::string, Type_Info>(t_node->children[0]->text, Type_Info()); return std::pair<std::string, Type_Info>(t_node->children[0]->text, Type_Info());
} }
} }