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:
parent
9fc5f4ad23
commit
1801180a30
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue