forked from OSchip/llvm-project
[lld-macho][nfc] Removed unnecessary static_cast
Differential Revision: https://reviews.llvm.org/D99365
This commit is contained in:
parent
fcf629d76a
commit
e2f34cc330
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue