[llvm-commits] [llvm] r93259 - /llvm/trunk/include/llvm/Metadata.h

Chris Lattner sabre at nondot.org
Tue Jan 12 14:00:04 PST 2010


Author: lattner
Date: Tue Jan 12 16:00:04 2010
New Revision: 93259

URL: http://llvm.org/viewvc/llvm-project?rev=93259&view=rev
Log:
use consistent tag kinds for ilist_traits

Modified:
    llvm/trunk/include/llvm/Metadata.h

Modified: llvm/trunk/include/llvm/Metadata.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Metadata.h?rev=93259&r1=93258&r2=93259&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Metadata.h (original)
+++ llvm/trunk/include/llvm/Metadata.h Tue Jan 12 16:00:04 2010
@@ -184,7 +184,7 @@
 /// NamedMDNode is always named. All NamedMDNode operand has a type of metadata.
 class NamedMDNode : public Value, public ilist_node<NamedMDNode> {
   friend class SymbolTableListTraits<NamedMDNode, Module>;
-  friend class ilist_traits<NamedMDNode>;
+  friend struct ilist_traits<NamedMDNode>;
   friend class LLVMContextImpl;
   NamedMDNode(const NamedMDNode &);      // DO NOT IMPLEMENT
 





More information about the llvm-commits mailing list