diff options
author | David Robillard <d@drobilla.net> | 2009-03-10 14:44:41 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-03-10 14:44:41 +0000 |
commit | 16fbc29a3605f9460a986f932e619a935b95c5e5 (patch) | |
tree | 394dd0a6541bc20cde24cfe714cba6a4d1dfe4cc | |
parent | f8c11845f9440ef29f15445b3f864073bd051db9 (diff) | |
download | resp-16fbc29a3605f9460a986f932e619a935b95c5e5.tar.gz resp-16fbc29a3605f9460a986f932e619a935b95c5e5.tar.bz2 resp-16fbc29a3605f9460a986f932e619a935b95c5e5.zip |
Very important crucial fix for many things.
git-svn-id: http://svn.drobilla.net/resp/tuplr@80 ad02d1e2-f140-0410-9f75-f8b11f17cedd
-rw-r--r-- | tuplr.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -103,10 +103,10 @@ extern ostream& operator<<(ostream& out, const AST* ast); struct AST { AST(Cursor c=Cursor()) : loc(c) {} virtual ~AST() {} - virtual bool operator==(const AST& o) const = 0; - virtual bool contains(const AST* child) const { return false; } - virtual void constrain(TEnv& tenv) const {} - virtual void lift(CEnv& cenv) {} + virtual bool operator==(const AST& o) const = 0; + virtual bool contains(const AST* child) const { return false; } + virtual void constrain(TEnv& tenv) const {} + virtual void lift(CEnv& cenv) {} string str() const { ostringstream ss; ss << this; return ss.str(); } Cursor loc; private: |