diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-08-27 23:44:33 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-08-27 23:44:33 +0000 |
commit | 7362ce08cb2c1f0b544b18dbc21630fb4baebcfc (patch) | |
tree | ab562add7fce10ca928554df16111b6e8fd1844b /include/llvm/CompilerDriver | |
parent | b562b47deeb163d3c854b2d9670bf38a37b7816e (diff) | |
download | external_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/CompilerDriver')
-rw-r--r-- | include/llvm/CompilerDriver/CompilationGraph.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CompilerDriver/CompilationGraph.h b/include/llvm/CompilerDriver/CompilationGraph.h index 2579b26..3daafd5 100644 --- a/include/llvm/CompilerDriver/CompilationGraph.h +++ b/include/llvm/CompilerDriver/CompilationGraph.h @@ -241,7 +241,8 @@ namespace llvmc { /// NodeChildIterator - Another auxiliary class needed by GraphTraits. - class NodeChildIterator : public std::iterator<std::bidirectional_iterator_tag, Node, ptrdiff_t> { + class NodeChildIterator : public + std::iterator<std::bidirectional_iterator_tag, Node, ptrdiff_t> { typedef NodeChildIterator ThisType; typedef Node::container_type::iterator iterator; |