[cfe-commits] r65025 - /cfe/trunk/include/clang/Parse/AttributeList.h

Chris Lattner sabre at nondot.org
Wed Feb 18 22:41:35 PST 2009


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,





More information about the cfe-commits mailing list