Profiler: Move BlockStat and ProfileStats structures into the Profiler namespace

These should be part of the namespaced API and not be sitting in the
global namespace.
This commit is contained in:
Lioncash
2018-04-08 22:22:33 -04:00
parent 9dbc760bb7
commit a0f943178b
3 changed files with 12 additions and 8 deletions

View File

@ -78,7 +78,7 @@ CPUCoreBase* GetCore()
void WriteProfileResults(const std::string& filename)
{
ProfileStats prof_stats;
Profiler::ProfileStats prof_stats;
GetProfileResults(&prof_stats);
File::IOFile f(filename, "w");
@ -101,7 +101,7 @@ void WriteProfileResults(const std::string& filename)
}
}
void GetProfileResults(ProfileStats* prof_stats)
void GetProfileResults(Profiler::ProfileStats* prof_stats)
{
// Can't really do this with no g_jit core available
if (!g_jit)