Making the deleted copy constructor parameter const; NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254520 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Aaron Ballman 2015-12-02 17:07:30 +00:00
Родитель b5478a7e86
Коммит 294aa79c01
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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