From: Jakub Staszak Date: Thu, 15 Nov 2012 00:25:36 +0000 (+0000) Subject: Use LLVM_DELETED_FUNCTION. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b61a11f7c0a6dd453f2b53e0583fe14603516420;p=oota-llvm.git Use LLVM_DELETED_FUNCTION. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168009 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h index 6e0fd94dfe6..e508f9df901 100644 --- a/include/llvm/ADT/SmallVector.h +++ b/include/llvm/ADT/SmallVector.h @@ -365,7 +365,7 @@ template class SmallVectorImpl : public SmallVectorTemplateBase::value> { typedef SmallVectorTemplateBase::value > SuperClass; - SmallVectorImpl(const SmallVectorImpl&); // DISABLED. + SmallVectorImpl(const SmallVectorImpl&) LLVM_DELETED_FUNCTION; public: typedef typename SuperClass::iterator iterator; typedef typename SuperClass::size_type size_type;