diff options
author | David Robillard <d@drobilla.net> | 2009-03-13 03:21:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-03-13 03:21:53 +0000 |
commit | 6bed972454d60c503b760bcac92c4e36ba95520d (patch) | |
tree | 245fae0c6759f3a84bc9e14531e31284eb2de84b /tuplr.hpp | |
parent | 534a30b988ffc35687feb05765c10131a3f85ead (diff) | |
download | resp-6bed972454d60c503b760bcac92c4e36ba95520d.tar.gz resp-6bed972454d60c503b760bcac92c4e36ba95520d.tar.bz2 resp-6bed972454d60c503b760bcac92c4e36ba95520d.zip |
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
Diffstat (limited to 'tuplr.hpp')
-rw-r--r-- | tuplr.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -251,10 +251,10 @@ struct Funcs : public list< pair<AType*, CFunction> > { 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<ATuple*>(at(1)); } private: Funcs funcs; |