From bd68b2c74ed41efcad5a965ad81abacb17235aad Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 15 Mar 2009 01:14:53 +0000 Subject: Fix polymorphism when evaluation files. Shut up debug output. git-svn-id: http://svn.drobilla.net/resp/tuplr@90 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- typing.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'typing.cpp') diff --git a/typing.cpp b/typing.cpp index 1d86f3d..488c430 100644 --- a/typing.cpp +++ b/typing.cpp @@ -119,15 +119,11 @@ AClosure::constrain(TEnv& tenv, Constraints& c) const } c.constrain(tenv, this, genericType); - //for (Constraints::const_iterator i = cp.begin(); i != cp.end(); ++i) - // c.push_back(*i); } void ACall::constrain(TEnv& tenv, Constraints& c) const { - std::cerr << "CONSTRAIN CALL" << endl; - at(0)->constrain(tenv, c); AType* argsT = new AType(ATuple(), loc); for (size_t i = 1; i < size(); ++i) { -- cgit v1.2.1