about summary refs log tree commit diff
path: root/src/libexpr/eval.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-04-14T15·14+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-04-14T15·14+0000
commit81de12bc8fa09a89dae958a3ffc93e7a4c245db1 (patch)
tree7e2a8545dc16229181caa87266bede87b98ebf63 /src/libexpr/eval.hh
parent110d1557782fac4f8cafa27e5cbbcdebefb7a4c7 (diff)
* Refactoring: move variable uses to a separate class.
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r--src/libexpr/eval.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index a24b7345ef..bc61c84ea7 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;