[clang] fix a typo in da6187f566

This commit is contained in:
Yuanfang Chen 2022-08-17 01:26:52 -07:00
parent 8837ef4d37
commit b296aed8ae
1 changed files with 2 additions and 1 deletions

View File

@ -2488,7 +2488,8 @@ static bool isSameTemplateArg(ASTContext &Context,
XPEnd = X.pack_end(),
YP = Y.pack_begin();
XP != XPEnd; ++XP, ++YP)
if (!isSameTemplateArg(Context, *XP, *YP, PackExpansionMatchesPack))
if (!isSameTemplateArg(Context, *XP, *YP, PartialOrdering,
PackExpansionMatchesPack))
return false;
} else {
unsigned PackIterationSize = X.pack_size();