[clang][bytecode][NFC] Delete DynamicAllocator copy/move ctors (#139710)

They should never be needed.
This commit is contained in:
Timm Baeder
2025-05-13 18:49:17 +02:00
committed by GitHub
parent 3f6ef4ecfb
commit 23f6358ec3

View File

@@ -59,6 +59,8 @@ private:
public:
DynamicAllocator() = default;
DynamicAllocator(DynamicAllocator &) = delete;
DynamicAllocator(DynamicAllocator &&) = delete;
~DynamicAllocator();
void cleanup();