[lld] Drop const from a return type (NFC) (#140667)

This commit is contained in:
Kazu Hirata
2025-05-19 21:37:48 -07:00
committed by GitHub
parent 1fa26efeed
commit 575f66cf5e

View File

@@ -1324,7 +1324,7 @@ public:
std::optional<uint64_t> addr = std::nullopt)
: sym(sym), acleSeSym(acleSeSym), entAddr{addr} {}
static const size_t size{ACLESESYM_SIZE};
const std::optional<uint64_t> getAddr() const { return entAddr; };
std::optional<uint64_t> getAddr() const { return entAddr; };
Symbol *sym;
Symbol *acleSeSym;