r202734 - I guess we're still using LLVM_DELETED_FUNCTION instead of = delete. This should fix a complaining built bot.

Aaron Ballman aaron at aaronballman.com
Mon Mar 3 10:41:48 PST 2014


Author: aaronballman
Date: Mon Mar  3 12:41:48 2014
New Revision: 202734

URL: http://llvm.org/viewvc/llvm-project?rev=202734&view=rev
Log:
I guess we're still using LLVM_DELETED_FUNCTION instead of = delete. This should fix a complaining built bot.

Modified:
    cfe/trunk/include/clang/Sema/AttributeList.h

Modified: cfe/trunk/include/clang/Sema/AttributeList.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/AttributeList.h?rev=202734&r1=202733&r2=202734&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/AttributeList.h (original)
+++ cfe/trunk/include/clang/Sema/AttributeList.h Mon Mar  3 12:41:48 2014
@@ -705,7 +705,7 @@ public:
     : pool(factory), list(0) {
   }
 
-  ParsedAttributes(const ParsedAttributes &) = delete;
+  ParsedAttributes(const ParsedAttributes &) LLVM_DELETED_FUNCTION;
 
   AttributePool &getPool() const { return pool; }
 





More information about the cfe-commits mailing list