diff options
Diffstat (limited to 'src/func.cc')
-rw-r--r-- | src/func.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/func.cc b/src/func.cc index 31c8ad2..52f04dd 100644 --- a/src/func.cc +++ b/src/func.cc @@ -58,7 +58,9 @@ Function::~Function() delete expr; } -Value Function::evaluate(const Context *ctx, const std::vector<std::string> &call_argnames, const std::vector<Value> &call_argvalues) const +Value Function::evaluate(const Context *ctx, + const std::vector<std::string> &call_argnames, + const std::vector<Value> &call_argvalues) const { Context c(ctx); c.args(argnames, argexpr, call_argnames, call_argvalues); |