diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2017-12-20 23:11:05 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2017-12-20 23:11:05 +0000 |
| commit | 67ebbf2e361274492bb48eaeb889f88625dab269 (patch) | |
| tree | 5df26bf786a7676bd421c061550b99de954158cc | |
| parent | 88c3d8c9d1d16148b906b94feca6d1cf69ff7d25 (diff) | |
| download | bcm5719-llvm-67ebbf2e361274492bb48eaeb889f88625dab269.tar.gz bcm5719-llvm-67ebbf2e361274492bb48eaeb889f88625dab269.zip | |
Silence a -Wreorder warning from r321223.
llvm-svn: 321228
| -rw-r--r-- | clang/lib/AST/ASTDumper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/ASTDumper.cpp b/clang/lib/AST/ASTDumper.cpp index 79f669fcc4b..8b285db38e8 100644 --- a/clang/lib/AST/ASTDumper.cpp +++ b/clang/lib/AST/ASTDumper.cpp @@ -219,8 +219,8 @@ namespace { ASTDumper(raw_ostream &OS, const CommandTraits *Traits, const SourceManager *SM, bool ShowColors, const PrintingPolicy &PrintPolicy) - : OS(OS), Traits(Traits), SM(SM), ShowColors(ShowColors), - PrintPolicy(PrintPolicy) {} + : OS(OS), Traits(Traits), SM(SM), PrintPolicy(PrintPolicy), + ShowColors(ShowColors) {} void setDeserialize(bool D) { Deserialize = D; } |

