Merge branch 'master' into develop-v5

This commit is contained in:
Geza Lore
2022-09-15 10:28:35 +01:00
103 changed files with 1819 additions and 408 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ class EmitCSyms final : EmitCBaseVisitor {
const string::size_type dpos = whole.rfind("__DOT__");
if (dpos != string::npos) {
scpName = whole.substr(0, dpos);
varBase = whole.substr(dpos + strlen("__DOT__"));
varBase = whole.substr(dpos + std::strlen("__DOT__"));
} else {
varBase = whole;
}