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 9012e6d commit fa06da0Copy full SHA for fa06da0
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