aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-13 03:21:53 +0000
committerDavid Robillard <d@drobilla.net>2009-03-13 03:21:53 +0000
commit6bed972454d60c503b760bcac92c4e36ba95520d (patch)
tree245fae0c6759f3a84bc9e14531e31284eb2de84b /tuplr.hpp
parent534a30b988ffc35687feb05765c10131a3f85ead (diff)
downloadresp-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.hpp8
1 files changed, 4 insertions, 4 deletions
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<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;