fixed inliner, version updated

This commit is contained in:
ALEXks
2023-12-11 20:53:33 +03:00
parent d360bf5a43
commit 110970caa6
3 changed files with 3 additions and 3 deletions

View File

@@ -2386,7 +2386,7 @@ static void convertLinesToAbsolute(const map<string, vector<FuncInfo*>>& allFunc
if (detCall.detailCallsFrom == make_pair(funcToInl, targetLine) &&
added.find(make_tuple(file, funcToInl, targetLine)) == added.end())
{
__spf_print(1, "%s %d (was %d) %s\n", funcToInl, targetLine, std::get<2>(inDataProc[z]), funcByFile.first.c_str());
__spf_print(1, "%s %d (was %d) %s\n", funcToInl.c_str(), targetLine, std::get<2>(inDataProc[z]), funcByFile.first.c_str());
added.insert(make_tuple(file, funcToInl, targetLine));
absoluteLine = targetLine;
break;

View File

@@ -1,3 +1,3 @@
#pragma once
#define VERSION_SPF "2255"
#define VERSION_SPF "2256"