diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-27 04:53:41 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-27 04:53:41 (GMT) |
commit | 886bc85eec1b3d4c0f10c82a7e90adb15dddfe47 (patch) | |
tree | 5dddcc356535a5cee9416c41f858a9f51d11a06c /src/expr.cc | |
parent | ba20c0e800566c649a8e48937a71c849e5aba96a (diff) |
Fixes remaining dxfdim() issue from #217
Diffstat (limited to 'src/expr.cc')
-rw-r--r-- | src/expr.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/expr.cc b/src/expr.cc index 985a53a..746c0e3 100644 --- a/src/expr.cc +++ b/src/expr.cc @@ -142,12 +142,6 @@ Value Expression::evaluate(const Context *context) const } if (this->type == "F") { EvalContext c(context, this->call_arguments); - // Value::VectorType argvalues; - // std::transform(this->children.begin(), this->children.end(), - // std::back_inserter(argvalues), - // boost::bind(&Expression::evaluate, _1, context)); - // for (size_t i=0; i < this->children.size(); i++) - // argvalues.push_back(this->children[i]->evaluate(context)); return context->evaluate_function(this->call_funcname, &c); } abort(); |