aboutsummaryrefslogtreecommitdiffstats
path: root/typing.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-15 01:14:53 +0000
committerDavid Robillard <d@drobilla.net>2009-03-15 01:14:53 +0000
commitbd68b2c74ed41efcad5a965ad81abacb17235aad (patch)
tree203c749ce517ac9b106ce7748dbe4c025ba2cdea /typing.cpp
parent117b9fbb3d0737f44cf3f8f3f1a3f964b1f9e777 (diff)
downloadresp-bd68b2c74ed41efcad5a965ad81abacb17235aad.tar.gz
resp-bd68b2c74ed41efcad5a965ad81abacb17235aad.tar.bz2
resp-bd68b2c74ed41efcad5a965ad81abacb17235aad.zip
Fix polymorphism when evaluation files.
Shut up debug output. git-svn-id: http://svn.drobilla.net/resp/tuplr@90 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'typing.cpp')
-rw-r--r--typing.cpp4
1 files changed, 0 insertions, 4 deletions
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) {