[lld-macho][NFC] Remove redundant member from class Defined

`class Symbol` defines a data member `InputFile *file;`
`class Defined` inherits from `Symbol` and also defines a data member `InputFile *file;` for no apparent purpose.

Differential Revision: https://reviews.llvm.org/D99783
This commit is contained in:
Greg McGary 2021-04-01 18:42:44 -07:00
parent a505801e2b
commit 3f8c6f493b
1 changed files with 0 additions and 1 deletions

View File

@ -117,7 +117,6 @@ public:
static bool classof(const Symbol *s) { return s->kind() == DefinedKind; }
InputFile *file;
InputSection *isec;
uint64_t value;
uint64_t size;