[clang] [llvm] [llvm][clang] Remove `llvm::OwningArrayRef` (PR #169126)

Jakub Kuderski via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 21 18:07:56 PST 2025


================
@@ -46,7 +46,7 @@ class BTFParser {
   // A copy of types table from the object file but using native byte
   // order. Should not be too big in practice, e.g. for ~250MiB vmlinux
   // image it is ~4MiB.
-  OwningArrayRef<uint8_t> TypesBuffer;
+  std::vector<uint8_t> TypesBuffer;
----------------
kuhar wrote:

also here

https://github.com/llvm/llvm-project/pull/169126


More information about the llvm-commits mailing list