Remove unused variable breaking -Werror builds.

llvm-svn: 270529
This commit is contained in:
Zachary Turner 2016-05-24 03:32:34 +00:00
parent 09d305fb6c
commit 537014ce15
1 changed files with 1 additions and 2 deletions

View File

@ -151,7 +151,7 @@ class COFFObjectDumpDelegate : public SymbolDumpDelegate {
public:
COFFObjectDumpDelegate(COFFDumper &CD, const SectionRef &SR,
const COFFObjectFile *Obj, StringRef SectionContents)
: CD(CD), SR(SR), Obj(Obj), SectionContents(SectionContents) {
: CD(CD), SR(SR), SectionContents(SectionContents) {
Sec = Obj->getCOFFSection(SR);
}
@ -181,7 +181,6 @@ public:
private:
COFFDumper &CD;
const SectionRef &SR;
const COFFObjectFile *Obj;
const coff_section *Sec;
StringRef SectionContents;
};