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

@ -11,7 +11,11 @@
class CPUCoreBase;
class PointerWrap;
namespace Profiler
{
struct ProfileStats;
}
namespace JitInterface
{
@ -29,7 +33,7 @@ CPUCoreBase* GetCore();
// Debugging
void WriteProfileResults(const std::string& filename);
void GetProfileResults(ProfileStats* prof_stats);
void GetProfileResults(Profiler::ProfileStats* prof_stats);
int GetHostCode(u32* address, const u8** code, u32* code_size);
// Memory Utilities