From 6bed972454d60c503b760bcac92c4e36ba95520d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 13 Mar 2009 03:21:53 +0000 Subject: Don't use TEnv.var() where unnecessary (this needs to go away? maybe?) git-svn-id: http://svn.drobilla.net/resp/tuplr@87 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- tuplr.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tuplr.hpp') diff --git a/tuplr.hpp b/tuplr.hpp index 68e55f3..a16072d 100644 --- a/tuplr.hpp +++ b/tuplr.hpp @@ -251,10 +251,10 @@ struct Funcs : public list< pair > { struct AClosure : public ATuple { AClosure(Cursor c, ASymbol* fn, ATuple* p, AST* b, const string& n="") : ATuple(c, fn, p, b, NULL), name(n) {} - bool operator==(const AST& rhs) const { return this == &rhs; } - void constrain(TEnv& tenv) const; - void lift(CEnv& cenv); - CValue compile(CEnv& cenv); + bool operator==(const AST& rhs) const { return this == &rhs; } + void constrain(TEnv& tenv) const; + void lift(CEnv& cenv); + CValue compile(CEnv& cenv); ATuple* prot() const { return dynamic_cast(at(1)); } private: Funcs funcs; -- cgit v1.2.1