Making the deleted copy constructor parameter const; NFC.

llvm-svn: 254520
This commit is contained in:
Aaron Ballman 2015-12-02 17:07:30 +00:00
parent e3b5aeaf83
commit 32beedc982
1 changed files with 1 additions and 1 deletions

View File

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