diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-30 05:03:28 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-30 05:03:28 +0000 |
commit | 3702af57e399448efa8e2bfd600f009945b5c936 (patch) | |
tree | 30ca5f8d1f6dbd47e2cf0ca2760c48e157292eef | |
parent | c4f8706b6539e06a5de153bd72850bb2e0a71456 (diff) |
Adjust code format.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58420 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Driver/AnalysisConsumer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Driver/AnalysisConsumer.cpp b/Driver/AnalysisConsumer.cpp index 12ba732bd9..230b17d6ee 100644 --- a/Driver/AnalysisConsumer.cpp +++ b/Driver/AnalysisConsumer.cpp @@ -300,8 +300,7 @@ void AnalysisConsumer::HandleCode(Decl* D, Stmt* Body, Actions actions) { AnalysisManager mgr(*this, D, Body); // Dispatch on the actions. - for (Actions::iterator I = actions.begin(), - E = actions.end(); I != E; ++I) + for (Actions::iterator I = actions.begin(), E = actions.end(); I != E; ++I) (*I)(mgr); } |