It appears that this horrible mutating copy constructor is unused. Kill it with fire.

llvm-svn: 254423
This commit is contained in:
Aaron Ballman 2015-12-01 17:15:13 +00:00
parent 430110cc0b
commit a9918e897b
1 changed files with 0 additions and 5 deletions

View File

@ -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() {