diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-10-18 01:34:56 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-10-18 01:34:56 +0000 |
| commit | 77c5bb5e4a9013e1f5ea9f232a54e59d989fd94f (patch) | |
| tree | 9220943155067045cfef27672464dfe8cfc5f795 /clang/lib/AST/ASTDumper.cpp | |
| parent | a543308ce5569a40160b3bcd314037395d78cc0a (diff) | |
| download | bcm5719-llvm-77c5bb5e4a9013e1f5ea9f232a54e59d989fd94f.tar.gz bcm5719-llvm-77c5bb5e4a9013e1f5ea9f232a54e59d989fd94f.zip | |
Fix 80-column violation.
llvm-svn: 192937
Diffstat (limited to 'clang/lib/AST/ASTDumper.cpp')
| -rw-r--r-- | clang/lib/AST/ASTDumper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/AST/ASTDumper.cpp b/clang/lib/AST/ASTDumper.cpp index a21acba0cd9..908099a23a5 100644 --- a/clang/lib/AST/ASTDumper.cpp +++ b/clang/lib/AST/ASTDumper.cpp @@ -501,7 +501,8 @@ void ASTDumper::dumpDeclContext(const DeclContext *DC) { if (!DC) return; bool HasUndeserializedDecls = DC->hasExternalLexicalStorage(); - for (DeclContext::decl_iterator I = DC->noload_decls_begin(), E = DC->noload_decls_end(); + for (DeclContext::decl_iterator I = DC->noload_decls_begin(), + E = DC->noload_decls_end(); I != E; ++I) { DeclContext::decl_iterator Next = I; ++Next; |

