forked from OSchip/llvm-project
It appears that this horrible mutating copy constructor is unused. Kill it with fire.
llvm-svn: 254423
This commit is contained in:
parent
430110cc0b
commit
a9918e897b
|
@ -557,11 +557,6 @@ public:
|
|||
/// Create a new pool for a factory.
|
||||
AttributePool(AttributeFactory &factory) : Factory(factory), Head(nullptr) {}
|
||||
|
||||
/// Move the given pool's allocations to this pool.
|
||||
AttributePool(AttributePool &pool) : Factory(pool.Factory), Head(pool.Head) {
|
||||
pool.Head = nullptr;
|
||||
}
|
||||
|
||||
AttributeFactory &getFactory() const { return Factory; }
|
||||
|
||||
void clear() {
|
||||
|
|
Loading…
Reference in New Issue