aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/PostOrderIterator.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-08-27 23:44:33 +0000
committerGabor Greif <ggreif@gmail.com>2009-08-27 23:44:33 +0000
commit7362ce08cb2c1f0b544b18dbc21630fb4baebcfc (patch)
treeab562add7fce10ca928554df16111b6e8fd1844b /include/llvm/ADT/PostOrderIterator.h
parentb562b47deeb163d3c854b2d9670bf38a37b7816e (diff)
downloadexternal_llvm-7362ce08cb2c1f0b544b18dbc21630fb4baebcfc.zip
external_llvm-7362ce08cb2c1f0b544b18dbc21630fb4baebcfc.tar.gz
external_llvm-7362ce08cb2c1f0b544b18dbc21630fb4baebcfc.tar.bz2
eliminate all 80-col violations that I have introduced in my recent checkins (and some others more)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/PostOrderIterator.h')
-rw-r--r--include/llvm/ADT/PostOrderIterator.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/ADT/PostOrderIterator.h b/include/llvm/ADT/PostOrderIterator.h
index 5760b2b..8315bc9 100644
--- a/include/llvm/ADT/PostOrderIterator.h
+++ b/include/llvm/ADT/PostOrderIterator.h
@@ -42,9 +42,11 @@ template<class GraphT,
class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>,
bool ExtStorage = false,
class GT = GraphTraits<GraphT> >
-class po_iterator : public std::iterator<std::forward_iterator_tag, typename GT::NodeType, ptrdiff_t>,
+class po_iterator : public std::iterator<std::forward_iterator_tag,
+ typename GT::NodeType, ptrdiff_t>,
public po_iterator_storage<SetType, ExtStorage> {
- typedef std::iterator<std::forward_iterator_tag, typename GT::NodeType, ptrdiff_t> super;
+ typedef std::iterator<std::forward_iterator_tag,
+ typename GT::NodeType, ptrdiff_t> super;
typedef typename GT::NodeType NodeType;
typedef typename GT::ChildIteratorType ChildItTy;