aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-09-24 02:33:22 +0000
committerOwen Anderson <resistor@mac.com>2007-09-24 02:33:22 +0000
commit1dcca6b2d0bb8fb374134c9db58ed15b2164fc1d (patch)
tree241dd7e398536ce7f3af909f57655eecee21d437 /include
parent68099d58cbad1fc6de980b2b01b6f221b560d5d5 (diff)
downloadexternal_llvm-1dcca6b2d0bb8fb374134c9db58ed15b2164fc1d.zip
external_llvm-1dcca6b2d0bb8fb374134c9db58ed15b2164fc1d.tar.gz
external_llvm-1dcca6b2d0bb8fb374134c9db58ed15b2164fc1d.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.h2
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) :