summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-03-03 18:41:48 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-03-03 18:41:48 +0000
commitf08a5c7608bb7f02931ebc183f0b851d11c8dc20 (patch)
tree8d029932514cfd5bf33a7107cd3cab93e7a87987
parent7ef1c387a049191d5a730461d344f9b0b3064e1d (diff)
downloadbcm5719-llvm-f08a5c7608bb7f02931ebc183f0b851d11c8dc20.tar.gz
bcm5719-llvm-f08a5c7608bb7f02931ebc183f0b851d11c8dc20.zip
I guess we're still using LLVM_DELETED_FUNCTION instead of = delete. This should fix a complaining built bot.
llvm-svn: 202734
-rw-r--r--clang/include/clang/Sema/AttributeList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Sema/AttributeList.h b/clang/include/clang/Sema/AttributeList.h
index 6957e6dd16b..6d48e38e3eb 100644
--- a/clang/include/clang/Sema/AttributeList.h
+++ b/clang/include/clang/Sema/AttributeList.h
@@ -705,7 +705,7 @@ public:
: pool(factory), list(0) {
}
- ParsedAttributes(const ParsedAttributes &) = delete;
+ ParsedAttributes(const ParsedAttributes &) LLVM_DELETED_FUNCTION;
AttributePool &getPool() const { return pool; }
OpenPOWER on IntegriCloud