From: Chris Lattner Date: Thu, 19 Feb 2009 06:41:35 +0000 (+0000) Subject: disable copying and assignment of AttributeList X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60b2837ba2335b13fc5aaaa6826b1a4710944d92;p=clang disable copying and assignment of AttributeList git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65025 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Parse/AttributeList.h b/include/clang/Parse/AttributeList.h index 97ad2917ba..bfa03571d6 100644 --- a/include/clang/Parse/AttributeList.h +++ b/include/clang/Parse/AttributeList.h @@ -35,6 +35,8 @@ class AttributeList { Action::ExprTy **Args; unsigned NumArgs; AttributeList *Next; + AttributeList(const AttributeList &); // DO NOT IMPLEMENT + void operator=(const AttributeList &); // DO NOT IMPLEMENT public: AttributeList(IdentifierInfo *AttrName, SourceLocation AttrLoc, IdentifierInfo *ParmName, SourceLocation ParmLoc,