diff --git a/shared/source/utilities/bitcontainers.h b/shared/source/utilities/bitcontainers.h index 57ae790973..ddd5dcc1c1 100644 --- a/shared/source/utilities/bitcontainers.h +++ b/shared/source/utilities/bitcontainers.h @@ -203,6 +203,11 @@ class OpaqueElementAllocator final { } } + OpaqueElementAllocator(OpaqueElementAllocator &&) = default; + OpaqueElementAllocator &operator=(OpaqueElementAllocator &&) = default; + OpaqueElementAllocator(const OpaqueElementAllocator &) = delete; + OpaqueElementAllocator &operator=(const OpaqueElementAllocator &) = delete; + AllocationT allocate() { for (auto &chunk : chunks) { auto *va = chunk.allocate();