Home
last modified time | relevance | path

Searched refs:DeclDiags (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp2211 SmallVector<LocAndDiag, 16> DeclDiags; in ActOnPopScope() local
2212 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()