Files
dolphin/Source/Core/Core/PowerPC/Profiler.cpp
Lioncash dd4203bec8 Core: Remove unnecessary includes
Also moves a cpp file's related header file to the top of the inclusions if it isn't already there.
2017-06-15 18:52:22 -04:00

20 lines
372 B
C++

// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "Core/PowerPC/Profiler.h"
#include <string>
#include "Core/PowerPC/JitInterface.h"
namespace Profiler
{
bool g_ProfileBlocks;
void WriteProfileResults(const std::string& filename)
{
JitInterface::WriteProfileResults(filename);
}
} // namespace