From 59117fc8bcd610697a45c0013fc7450de2ee512f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 15 Mar 2009 02:27:15 +0000 Subject: Make TEnv strictly keyed by ASymbol. Prettier casting. git-svn-id: http://svn.drobilla.net/resp/tuplr@93 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- typing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'typing.cpp') diff --git a/typing.cpp b/typing.cpp index d6f7acc..105140e 100644 --- a/typing.cpp +++ b/typing.cpp @@ -110,7 +110,7 @@ AClosure::constrain(TEnv& tenv, Constraints& c) const genericType = new AType(loc, tenv.penv.sym("Fn"), tsubst.apply(protT), tsubst.apply(bodyT), 0); tenv.genericTypes.insert(make_pair(this, genericType)); - tenv.def(this, genericType); + //tenv.def(this, genericType); tenv.pop(); subst = new Subst(tsubst); @@ -141,7 +141,7 @@ ADefinition::constrain(TEnv& tenv, Constraints& c) const if (!dynamic_cast(at(1))) throw Error("`def' name is not a symbol", loc); AType* tvar = tenv.var(at(2)); - tenv.def(at(1), tvar); + tenv.def(at(1)->as(), tvar); at(2)->constrain(tenv, c); c.constrain(tenv, this, tvar); } -- cgit v1.2.1