.sym file sorting accounts for local labels' parents' addresses and names (#1684)

This commit is contained in:
Rangi
2025-05-05 13:57:25 -04:00
committed by GitHub
parent e95ac6fb06
commit d413870e6d
10 changed files with 55 additions and 28 deletions

View File

@@ -36,7 +36,7 @@ static std::string make_escape(std::string &str) {
size_t pos = 0;
for (;;) {
// All dollars needs to be doubled
size_t nextPos = str.find("$", pos);
size_t nextPos = str.find('$', pos);
if (nextPos == std::string::npos) {
break;
}