aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-10 14:44:41 +0000
committerDavid Robillard <d@drobilla.net>2009-03-10 14:44:41 +0000
commit16fbc29a3605f9460a986f932e619a935b95c5e5 (patch)
tree394dd0a6541bc20cde24cfe714cba6a4d1dfe4cc
parentf8c11845f9440ef29f15445b3f864073bd051db9 (diff)
downloadresp-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.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tuplr.hpp b/tuplr.hpp
index 308c5d6..dc0756f 100644
--- a/tuplr.hpp
+++ b/tuplr.hpp
@@ -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: