forked from OSchip/llvm-project
Making the deleted copy constructor parameter const; NFC.
llvm-svn: 254520
This commit is contained in:
parent
e3b5aeaf83
commit
32beedc982
|
@ -557,7 +557,7 @@ public:
|
|||
/// Create a new pool for a factory.
|
||||
AttributePool(AttributeFactory &factory) : Factory(factory), Head(nullptr) {}
|
||||
|
||||
AttributePool(AttributePool &) = delete;
|
||||
AttributePool(const AttributePool &) = delete;
|
||||
|
||||
/// Move the given pool's allocations to this pool.
|
||||
AttributePool(AttributePool &&pool) : Factory(pool.Factory), Head(pool.Head) {
|
||||
|
|
Loading…
Reference in New Issue