aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
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)"