diff options
author | Owen Anderson <resistor@mac.com> | 2007-09-24 02:33:22 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-09-24 02:33:22 +0000 |
commit | 83ab0d803f3f23c6743ba20b4dec8fb05beae7e7 (patch) | |
tree | 241dd7e398536ce7f3af909f57655eecee21d437 /include | |
parent | 925174f4a20b1295e12bae41a83873048bb88b15 (diff) | |
download | external_llvm-83ab0d803f3f23c6743ba20b4dec8fb05beae7e7.zip external_llvm-83ab0d803f3f23c6743ba20b4dec8fb05beae7e7.tar.gz external_llvm-83ab0d803f3f23c6743ba20b4dec8fb05beae7e7.tar.bz2 |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42256 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ADT/PostOrderIterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/PostOrderIterator.h b/include/llvm/ADT/PostOrderIterator.h index 16f0865..42c8089 100644 --- a/include/llvm/ADT/PostOrderIterator.h +++ b/include/llvm/ADT/PostOrderIterator.h @@ -147,7 +147,7 @@ po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { // Provide global definitions of inverse post order iterators... template <class T, - class SetType = std::set<typename GraphTraits<T>::NoddeType*>, + class SetType = std::set<typename GraphTraits<T>::NodeType*>, bool External = false> struct ipo_iterator : public po_iterator<Inverse<T>, SetType, External > { ipo_iterator(const po_iterator<Inverse<T>, SetType, External> &V) : |