Merge pull request #14 from ludekvodicka/master

Removed unused variable to remove compiler warnings
This commit is contained in:
lbersch
2018-02-23 17:00:47 +01:00
committed by GitHub

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);
}
}