[lld-macho][nfc] Removed unnecessary static_cast

Differential Revision: https://reviews.llvm.org/D99365
This commit is contained in:
Vy Nguyen 2021-03-25 14:59:54 -04:00
parent fcf629d76a
commit e2f34cc330
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public:
virtual ~Symbol() {}
Kind kind() const { return static_cast<Kind>(symbolKind); }
Kind kind() const { return symbolKind; }
StringRef getName() const {
if (nameSize == (uint32_t)-1)