diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2015-12-02 17:07:30 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2015-12-02 17:07:30 +0000 |
commit | 32beedc982b995ee87855fd3692b4f28dfa4b262 (patch) | |
tree | d86f372ebb74c00d47e931a247423f6f69312294 | |
parent | e3b5aeaf8325da211d0be7b3717dc7425dd5e259 (diff) | |
download | bcm5719-llvm-32beedc982b995ee87855fd3692b4f28dfa4b262.tar.gz bcm5719-llvm-32beedc982b995ee87855fd3692b4f28dfa4b262.zip |
Making the deleted copy constructor parameter const; NFC.
llvm-svn: 254520
-rw-r--r-- | clang/include/clang/Sema/AttributeList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Sema/AttributeList.h b/clang/include/clang/Sema/AttributeList.h index 95968e21006..e32781d35fc 100644 --- a/clang/include/clang/Sema/AttributeList.h +++ b/clang/include/clang/Sema/AttributeList.h @@ -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) { |