all: Change to use Func::GetName()

This commit is contained in:
Arne Welzel 2024-09-27 12:53:42 +02:00
parent 71e9c8d436
commit 77b9510c8a
13 changed files with 29 additions and 31 deletions

View file

@ -121,7 +121,7 @@ ScriptProfileMgr::~ScriptProfileMgr() {
auto func = body_to_func[o];
if ( func_stats.count(func) == 0 )
func_stats[func] = ScriptProfileStats(func->Name());
func_stats[func] = ScriptProfileStats(func->GetName());
func_stats[func].AddIn(p);
}