Author: lattner
Date: Thu Feb 19 00:41:35 2009
New Revision: 65025
URL: http://llvm.org/viewvc/llvm-project?rev=65025&view=rev
Log:
disable copying and assignment of AttributeList
Modified:
cfe/trunk/include/clang/Parse/AttributeList.h
Modified: cfe/trunk/include/clang/Parse/AttributeList.h
URL:
http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/AttributeList.h?rev=65025&r1=65024&r2=65025&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/AttributeList.h (original)
+++ cfe/trunk/include/clang/Parse/AttributeList.h Thu Feb 19 00:41:35 2009
@@ -35,6 +35,8 @@
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,
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits