Searched refs:DeclDiags (Results 1 – 1 of 1) sorted by relevance
2211 SmallVector<LocAndDiag, 16> DeclDiags; in ActOnPopScope() local2212 auto addDiag = [&DeclDiags](SourceLocation Loc, PartialDiagnostic PD) { in ActOnPopScope()2213 DeclDiags.push_back(LocAndDiag{Loc, std::nullopt, std::move(PD)}); in ActOnPopScope()2215 auto addDiagWithPrev = [&DeclDiags](SourceLocation Loc, in ActOnPopScope()2218 DeclDiags.push_back(LocAndDiag{Loc, PreviousDeclLoc, std::move(PD)}); in ActOnPopScope()2263 llvm::sort(DeclDiags, in ActOnPopScope()2271 for (const LocAndDiag &D : DeclDiags) { in ActOnPopScope()