aboutsummaryrefslogtreecommitdiffstats
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
commit2e712fb3a51d2a62b38845dd637e1da84028c29c (patch)
tree898c86b45a180370d73aacc751f769012265a1b2
parentf1dce3cf05a58cfa05bcb9a3e9b8f1bf5f2de217 (diff)
downloadexternal_llvm-2e712fb3a51d2a62b38845dd637e1da84028c29c.zip
external_llvm-2e712fb3a51d2a62b38845dd637e1da84028c29c.tar.gz
external_llvm-2e712fb3a51d2a62b38845dd637e1da84028c29c.tar.bz2
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 e1d46c6..a6d3e68 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> {