[llvm] [ADT] ImutAVLFactory: avoid overhead of vector for freelist (PR #196534)
Christoph Cullmann via llvm-commits
llvm-commits at lists.llvm.org
Sat May 9 07:16:08 PDT 2026
================
@@ -368,7 +369,9 @@ class ImutAVLFactory {
CacheTy Cache;
uintptr_t Allocator;
std::vector<TreeTy*> createdNodes;
----------------
christoph-cullmann wrote:
Used
SmallVector<TreeTy*, 0>
Allows to skip to include <vector>.
https://github.com/llvm/llvm-project/pull/196534
More information about the llvm-commits
mailing list