From 5faf51234f0279c057c58a6c26cf35f4266bedaf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 7 Mar 2009 05:16:30 +0000 Subject: Remove redundant/useless ASTCall::exp git-svn-id: http://svn.drobilla.net/resp/tuplr@77 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- tuplr.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tuplr.hpp') diff --git a/tuplr.hpp b/tuplr.hpp index a931f8c..9a636b7 100644 --- a/tuplr.hpp +++ b/tuplr.hpp @@ -244,11 +244,10 @@ private: /// Function call/application, e.g. "(func arg1 arg2)" struct ASTCall : public ASTTuple { - ASTCall(const SExp& e, const ASTTuple& t) : ASTTuple(t, e.loc), exp(e) {} + ASTCall(const SExp& e, const ASTTuple& t) : ASTTuple(t, e.loc) {} void constrain(TEnv& tenv) const; void lift(CEnv& cenv); CValue compile(CEnv& cenv); - const SExp& exp; }; /// Definition special form, e.g. "(def x 2)" -- cgit v1.2.1