From 16fbc29a3605f9460a986f932e619a935b95c5e5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 10 Mar 2009 14:44:41 +0000 Subject: Very important crucial fix for many things. git-svn-id: http://svn.drobilla.net/resp/tuplr@80 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- tuplr.hpp | 8 ++++---- 1 file 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: -- cgit v1.2.1