Skip to content

Commit 575f66c

Browse files
[lld] Drop const from a return type (NFC) (#140667)
1 parent 1fa26ef commit 575f66c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lld/ELF/SyntheticSections.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ class ArmCmseSGVeneer {
13241324
std::optional<uint64_t> addr = std::nullopt)
13251325
: sym(sym), acleSeSym(acleSeSym), entAddr{addr} {}
13261326
static const size_t size{ACLESESYM_SIZE};
1327-
const std::optional<uint64_t> getAddr() const { return entAddr; };
1327+
std::optional<uint64_t> getAddr() const { return entAddr; };
13281328

13291329
Symbol *sym;
13301330
Symbol *acleSeSym;

0 commit comments

Comments
 (0)