Remove some unused private fields.

llvm-svn: 300163
This commit is contained in:
Zachary Turner 2017-04-13 02:28:17 +00:00
parent 3f60829455
commit d3d084a0a5
2 changed files with 1 additions and 5 deletions

View File

@ -14,7 +14,7 @@ using namespace llvm::pdb;
PrettyClassLayoutGraphicalDumper::PrettyClassLayoutGraphicalDumper(
LinePrinter &P)
: PDBSymDumper(true), Printer(P) {}
: PDBSymDumper(true) {}
bool PrettyClassLayoutGraphicalDumper::start(const ClassLayout &Layout) {
return false;

View File

@ -34,10 +34,6 @@ public:
void dump(const PDBSymbolTypeTypedef &Symbol) override;
void dump(const PDBSymbolTypeUDT &Symbol) override;
void dump(const PDBSymbolTypeVTable &Symbol) override;
private:
bool DumpedAnything = false;
LinePrinter &Printer;
};
}
}