Removed unused "exception" variable to remove compiler warnings (warning C4101: 'exception': unreferenced local variable)

This commit is contained in:
LUDA-PC\ludek.vodicka
2018-02-23 15:47:39 +01:00
parent 179f31e2bb
commit 2cc9ba2562

View File

@@ -498,7 +498,7 @@ public:
case Parsed::Function::Default: {
try {
return eval_expression(element.args[0], data);
} catch (std::exception& exception) {
} catch (std::exception&) {
return eval_expression(element.args[1], data);
}
}