We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83ee235 commit 5817c28Copy full SHA for 5817c28
libclc/utils/libclc-remangler/LibclcRemangler.cpp
@@ -105,6 +105,8 @@ class BumpPointerAllocator {
105
public:
106
BumpPointerAllocator()
107
: BlockList(new(InitialBuffer) BlockMeta{nullptr, 0}) {}
108
+ BumpPointerAllocator(const BumpPointerAllocator &) = delete;
109
+ BumpPointerAllocator &operator=(const BumpPointerAllocator &) = delete;
110
111
void *allocate(size_t N) {
112
N = (N + 15u) & ~15u;
0 commit comments