comparison dmd/opover.c @ 875:330f999ade44

Merged DMD 1.038
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 06 Jan 2009 16:33:51 +0100
parents cbd6c8073a32
children b30fe7e1dbb9
comparison
equal deleted inserted replaced
874:2ddee23bd70e 875:330f999ade44
727 static void templateResolve(Match *m, TemplateDeclaration *td, Scope *sc, Loc loc, Objects *targsi, Expressions *arguments) 727 static void templateResolve(Match *m, TemplateDeclaration *td, Scope *sc, Loc loc, Objects *targsi, Expressions *arguments)
728 { 728 {
729 FuncDeclaration *fd; 729 FuncDeclaration *fd;
730 730
731 assert(td); 731 assert(td);
732 fd = td->deduceFunctionTemplate(sc, loc, targsi, arguments); 732 fd = td->deduceFunctionTemplate(sc, loc, targsi, NULL, arguments);
733 if (!fd) 733 if (!fd)
734 return; 734 return;
735 m->anyf = fd; 735 m->anyf = fd;
736 if (m->last >= MATCHexact) 736 if (m->last >= MATCHexact)
737 { 737 {