[clang-tools-extra] [clang-doc] Move Info types into arenas (PR #190054)
Paul Kirth via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 10 14:10:10 PDT 2026
================
@@ -811,7 +838,8 @@ void Serializer::populateSymbolInfo(SymbolInfo &I, const T *D,
}
void Serializer::handleCompoundConstraints(
- const Expr *Constraint, OwningVec<ConstraintInfo> &ConstraintInfos) {
+ const Expr *Constraint,
+ llvm::SmallVectorImpl<ConstraintInfo> &ConstraintInfos) {
----------------
ilovepi wrote:
Exactly. SmallVectorImpl<T> is always preferred for interfaces anyway, per https://llvm.org/docs/ProgrammersManual.html#llvm-adt-smallvector-h.
https://github.com/llvm/llvm-project/pull/190054
More information about the cfe-commits
mailing list