IOS STM: Get rid of forward declarations in the cpp file

Forward declaring functions from a completely different header inside a cpp
file can lead to linker errors. Forward declaring also doesn't really
provide any benefit within cpp files unless it's to bring an internally
linked function within the same file into scope.
This commit is contained in:
Lioncash 2017-01-29 19:16:44 -05:00
parent 9fc5f4ad23
commit 1801180a30
1 changed files with 1 additions and 6 deletions

View File

@ -10,14 +10,9 @@
#include "Common/Assert.h" #include "Common/Assert.h"
#include "Common/ChunkFile.h" #include "Common/ChunkFile.h"
#include "Common/Logging/Log.h" #include "Common/Logging/Log.h"
#include "Core/Core.h"
#include "Core/HW/Memmap.h" #include "Core/HW/Memmap.h"
namespace Core
{
void QueueHostJob(std::function<void()> job, bool run_during_stop);
void Stop();
}
namespace IOS namespace IOS
{ {
namespace HLE namespace HLE