aboutsummaryrefslogtreecommitdiffstats
path: root/typing.cpp
diff options
context:
space:
mode:
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) {