diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-14T15·14+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-14T15·14+0000 |
commit | 81de12bc8fa09a89dae958a3ffc93e7a4c245db1 (patch) | |
tree | 7e2a8545dc16229181caa87266bede87b98ebf63 /src/libexpr/eval.hh | |
parent | 110d1557782fac4f8cafa27e5cbbcdebefb7a4c7 (diff) |
* Refactoring: move variable uses to a separate class.
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index a24b7345efab..bc61c84ea746 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -238,7 +238,7 @@ private: void addPrimOp(const string & name, unsigned int arity, PrimOp primOp); - Value * lookupVar(Env * env, const Symbol & name); + Value * lookupVar(Env * env, const VarRef & var); friend class ExprVar; friend class ExprAttrs; |