From 998fbc3036c01a72c778567ffd17b02b2277a049 Mon Sep 17 00:00:00 2001 From: xnpster Date: Sat, 31 Jan 2026 20:53:36 +0300 Subject: [PATCH] fix getUniqName --- src/Utils/SgUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/SgUtils.cpp b/src/Utils/SgUtils.cpp index 1a206c5..251d0fd 100644 --- a/src/Utils/SgUtils.cpp +++ b/src/Utils/SgUtils.cpp @@ -1314,7 +1314,7 @@ tuple getUniqName(const map> tuple 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()));