Apply changes from latest libdparse version

This commit is contained in:
ryuukk 2023-08-09 18:11:56 +02:00
parent 24ec82e546
commit e5bade2878
1 changed files with 2 additions and 2 deletions

View File

@ -258,9 +258,9 @@ final class FirstPass : ASTVisitor
void processTemplateArguments(SemanticSymbol* symbol, TypeLookup* lookup, VariableContext* ctx, VariableContext.TypeInstance* current, TemplateArguments targs) void processTemplateArguments(SemanticSymbol* symbol, TypeLookup* lookup, VariableContext* ctx, VariableContext.TypeInstance* current, TemplateArguments targs)
{ {
if (targs.templateArgumentList) if (targs.namedTemplateArgumentList)
{ {
foreach(i, targ; targs.templateArgumentList.items) foreach(i, targ; targs.namedTemplateArgumentList.items)
{ {
if (targ.type is null) continue; if (targ.type is null) continue;
if (targ.type.type2 is null) continue; if (targ.type.type2 is null) continue;