aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-07 05:16:30 +0000
committerDavid Robillard <d@drobilla.net>2009-03-07 05:16:30 +0000
commit5faf51234f0279c057c58a6c26cf35f4266bedaf (patch)
treec00831a6a0372e86b1c20f6a65f48f9ca505e806 /tuplr.hpp
parent3322999a97f4170e1476fc4bff431f5ca8909333 (diff)
downloadresp-5faf51234f0279c057c58a6c26cf35f4266bedaf.tar.gz
resp-5faf51234f0279c057c58a6c26cf35f4266bedaf.tar.bz2
resp-5faf51234f0279c057c58a6c26cf35f4266bedaf.zip
Remove redundant/useless ASTCall::exp
git-svn-id: http://svn.drobilla.net/resp/tuplr@77 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'tuplr.hpp')
-rw-r--r--tuplr.hpp3
1 files changed, 1 insertions, 2 deletions
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)"