From: Aaron Ballman Date: Mon, 3 Mar 2014 18:41:48 +0000 (+0000) Subject: I guess we're still using LLVM_DELETED_FUNCTION instead of = delete. This should... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fdd7bae830d904e18476678b3655fb06e77f530f;p=clang 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 --- 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; }