[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

GitOrigin-RevId: 3f8c6f493b06d72312757102f8277d367409bcdd
diff --git a/MachO/Symbols.h b/MachO/Symbols.h
index cb678ac..77919e1 100644
--- a/MachO/Symbols.h
+++ b/MachO/Symbols.h
@@ -117,7 +117,6 @@
 
   static bool classof(const Symbol *s) { return s->kind() == DefinedKind; }
 
-  InputFile *file;
   InputSection *isec;
   uint64_t value;
   uint64_t size;