fixed modules processing

This commit is contained in:
ALEXks
2024-02-02 20:35:44 +03:00
parent d6a61190a8
commit 95479c4740
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
#pragma once #pragma once
#define VERSION_SPF "2268" #define VERSION_SPF "2269"

View File

@@ -150,6 +150,7 @@ void fillUseStatement(SgStatement *st, set<string> &useMod,
{ {
SgExpression *ex = st->expr(0); SgExpression *ex = st->expr(0);
string modName = st->symbol()->identifier(); string modName = st->symbol()->identifier();
convertToLower(modName);
useMod.insert(modName); useMod.insert(modName);
if (ex) if (ex)