fix getUniqName

This commit is contained in:
2026-01-31 20:53:36 +03:00
parent 331d4f9d99
commit 998fbc3036

View File

@@ -1314,7 +1314,7 @@ tuple<int, string, string> getUniqName(const map<string, vector<SgExpression*>>
tuple<int, string, string> retVal;
if (inCommon)
retVal = make_tuple(commonPos, string("common_") + getCommonName(foundCommon), string(symb->identifier()));
retVal = make_tuple(commonPos, string("common_") + getCommonName(foundCommon), "");
else
retVal = make_tuple(decl->lineNumber(), string(decl->fileName()), string(symb->identifier()));