summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-02-27 09:33:37 +0000
committerGabor Greif <ggreif@gmail.com>2009-02-27 09:33:37 +0000
commit1c17ca10b5bcbc6aeef79348818389df15fc7df8 (patch)
tree898c86b45a180370d73aacc751f769012265a1b2
parent0a0e68a7eac0513505aff3079e2d5d6864e51895 (diff)
downloadllvm-1c17ca10b5bcbc6aeef79348818389df15fc7df8.tar.gz
llvm-1c17ca10b5bcbc6aeef79348818389df15fc7df8.tar.bz2
llvm-1c17ca10b5bcbc6aeef79348818389df15fc7df8.tar.xz
fix comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65627 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/SymbolTableListTraits.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/SymbolTableListTraits.h b/include/llvm/SymbolTableListTraits.h
index e1d46c6772..a6d3e6820f 100644
--- a/include/llvm/SymbolTableListTraits.h
+++ b/include/llvm/SymbolTableListTraits.h
@@ -33,10 +33,8 @@ template<typename NodeTy> class ilist_iterator;
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> {