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.cpp2193 SmallVector<LocAndDiag, 16> DeclDiags; in ActOnPopScope() local
2194 auto addDiag = [&DeclDiags](SourceLocation Loc, PartialDiagnostic PD) { in ActOnPopScope()
2195 DeclDiags.push_back(LocAndDiag{Loc, std::nullopt, std::move(PD)}); in ActOnPopScope()
2197 auto addDiagWithPrev = [&DeclDiags](SourceLocation Loc, in ActOnPopScope()
2200 DeclDiags.push_back(LocAndDiag{Loc, PreviousDeclLoc, std::move(PD)}); in ActOnPopScope()
2245 llvm::sort(DeclDiags, in ActOnPopScope()
2253 for (const LocAndDiag &D : DeclDiags) { in ActOnPopScope()