diff --git a/tools/llvm-pdbdump/CompilandDumper.cpp b/tools/llvm-pdbdump/CompilandDumper.cpp index ff956a0c141..e15384ce71c 100644 --- a/tools/llvm-pdbdump/CompilandDumper.cpp +++ b/tools/llvm-pdbdump/CompilandDumper.cpp @@ -36,7 +36,7 @@ using namespace llvm; CompilandDumper::CompilandDumper(LinePrinter &P) - : Printer(P), PDBSymDumper(true) {} + : PDBSymDumper(true), Printer(P) {} void CompilandDumper::dump(const PDBSymbolCompilandDetails &Symbol, raw_ostream &OS, int Indent) {} diff --git a/tools/llvm-pdbdump/LinePrinter.cpp b/tools/llvm-pdbdump/LinePrinter.cpp index afdfa37edf3..09ba329ad0a 100644 --- a/tools/llvm-pdbdump/LinePrinter.cpp +++ b/tools/llvm-pdbdump/LinePrinter.cpp @@ -14,7 +14,7 @@ using namespace llvm; LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream) - : IndentSpaces(Indent), CurrentIndent(0), OS(Stream) {} + : OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {} void LinePrinter::Indent() { CurrentIndent += IndentSpaces; }