aboutsummaryrefslogtreecommitdiffstats
path: root/src/unify.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-04 23:48:39 +0000
committerDavid Robillard <d@drobilla.net>2010-12-04 23:48:39 +0000
commit5ca01630edc38087b722e1c22b20edc82d871dd7 (patch)
treecc58b13832fba3161f952bdfd9f2a7db5c90ade6 /src/unify.cpp
parent8905a0e25858a047e0844c55ed8a025153ab25d9 (diff)
downloadresp-5ca01630edc38087b722e1c22b20edc82d871dd7.tar.gz
resp-5ca01630edc38087b722e1c22b20edc82d871dd7.tar.bz2
resp-5ca01630edc38087b722e1c22b20edc82d871dd7.zip
Tidy up unify.cpp
git-svn-id: http://svn.drobilla.net/resp/resp@298 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/unify.cpp')
-rw-r--r--src/unify.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/unify.cpp b/src/unify.cpp
index 0c9dea2..9f3a521 100644
--- a/src/unify.cpp
+++ b/src/unify.cpp
@@ -33,7 +33,7 @@ TEnv::buildSubst(const AType* genericT, const AType& argsT)
// Build substitution to apply to generic type
const ATuple* genericProtT = genericT->list_ref(1)->as_tuple();
ATuple::const_iterator g = genericProtT->begin();
- AType::const_iterator a = argsT.begin();
+ ATuple::const_iterator a = argsT.begin();
for (; a != argsT.end(); ++a, ++g) {
const AType* genericArgT = (*g)->to_type();
const AType* callArgT = (*a)->to_type();
@@ -60,7 +60,6 @@ Constraints::constrain(TEnv& tenv, const AST* o, const AType* t)
{
assert(o);
assert(t);
- assert(!o->to_type());
push_back(Constraint(tenv.var(o), t));
}
@@ -109,16 +108,12 @@ Constraints::replace(const AType* s, const AType* t)
{
for (Constraints::iterator c = begin(); c != end(); ++c) {
if (*c->first == *s) {
- AType* type = new AType(*t);
- type->loc = c->first->loc;
- c->first = type;
+ c->first = new AType(*t, c->first->loc);
} else if (c->first->kind == AType::EXPR) {
c->first = substitute(c->first, s, t);
}
if (*c->second == *s) {
- AType* type = new AType(*t);
- type->loc = c->second->loc;
- c->second = type;
+ c->second = new AType(*t, c->second->loc);
} else if (c->second->kind == AType::EXPR) {
c->second = substitute(c->second, s, t);
}