diff options
Diffstat (limited to 'typing.cpp')
-rw-r--r-- | typing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,6 +25,7 @@ Constraints::constrain(TEnv& tenv, const AST* o, AType* t) push_back(Constraint(tenv.var(o), t, o->loc)); } + /*************************************************************************** * AST Type Constraints * ***************************************************************************/ @@ -244,7 +245,6 @@ substitute(ATuple* tup, const AST* from, AST* to) substitute(tup->at(i)->to<ATuple*>(), from, to); } - Subst Subst::compose(const Subst& delta, const Subst& gamma) // TAPL 22.1.1 { |