[llvm-commits] [llvm] r65627 - /llvm/trunk/include/llvm/SymbolTableListTraits.h
Gabor Greif
ggreif at gmail.com
Fri Feb 27 01:33:39 PST 2009
Author: ggreif
Date: Fri Feb 27 03:33:37 2009
New Revision: 65627
URL: http://llvm.org/viewvc/llvm-project?rev=65627&view=rev
Log:
fix comments
Modified:
llvm/trunk/include/llvm/SymbolTableListTraits.h
Modified: llvm/trunk/include/llvm/SymbolTableListTraits.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/SymbolTableListTraits.h?rev=65627&r1=65626&r2=65627&view=diff
==============================================================================
--- llvm/trunk/include/llvm/SymbolTableListTraits.h (original)
+++ llvm/trunk/include/llvm/SymbolTableListTraits.h Fri Feb 27 03:33:37 2009
@@ -33,10 +33,8 @@
template<typename NodeTy, typename Traits> class iplist;
template<typename Ty> struct ilist_traits;
-// ValueSubClass - The type of objects that I hold, e.g. Instruction.
-// ItemParentType - The type of object that owns the list, e.g. BasicBlock.
-// TraitBaseClass - The class this trait should inherit from, it should
-// inherit from ilist_traits<ValueSubClass>
+// ValueSubClass - The type of objects that I hold, e.g. Instruction.
+// ItemParentClass - The type of object that owns the list, e.g. BasicBlock.
//
template<typename ValueSubClass, typename ItemParentClass>
class SymbolTableListTraits : public ilist_default_traits<ValueSubClass> {
More information about the llvm-commits
mailing list