From fdd7bae830d904e18476678b3655fb06e77f530f Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 3 Mar 2014 18:41:48 +0000 Subject: [PATCH] I guess we're still using LLVM_DELETED_FUNCTION instead of = delete. This should fix a complaining built bot. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202734 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Sema/AttributeList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Sema/AttributeList.h b/include/clang/Sema/AttributeList.h index 6957e6dd16..6d48e38e3e 100644 --- a/include/clang/Sema/AttributeList.h +++ b/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; } -- 2.40.0