git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230747
91177308-0d34-0410-b5e6-
96231b3b80d8
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) {}
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; }