[llvm-branch-commits] [clang-tools-extra] [clang-doc] Move Info types into arenas (PR #190054)
Erick Velez via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Apr 7 12:29:01 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) {
----------------
evelez7 wrote:
Why is SmallVectorImpl used here instead of just SmallVector? Is it because you don't need to specify a size?
https://github.com/llvm/llvm-project/pull/190054
More information about the llvm-branch-commits
mailing list