Some miscellaneous refactoring and copy-editing

This commit is contained in:
Rangi42
2025-02-10 16:51:51 +01:00
parent 177a3abfac
commit 48412e9c56
6 changed files with 17 additions and 24 deletions

View File

@@ -566,9 +566,7 @@ std::string sym_MakeAnonLabelName(uint32_t ofs, bool neg) {
}
}
std::string anon("!");
anon += std::to_string(id);
return anon;
return "!"s + std::to_string(id);
}
void sym_Export(std::string const &symName) {