Skip to content

Commit 4feb362

Browse files
committed
Moved some includes from the header to the source file
1 parent f4bd048 commit 4feb362

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

src/core/modules/memory/memory_tools.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@
3838
#include "utilities/sp_util.h"
3939
#include "utilities/call_python.h"
4040

41+
// DynamicHooks
42+
#include "conventions/x86MsCdecl.h"
43+
#include "conventions/x86MsThiscall.h"
44+
#include "conventions/x86MsStdcall.h"
45+
#include "conventions/x86GccCdecl.h"
46+
#include "conventions/x86GccThiscall.h"
47+
4148

4249
DCCallVM* g_pCallVM = dcNewCallVM(4096);
4350
extern std::map<CHook *, std::map<HookType_t, std::list<PyObject *> > > g_mapCallbacks;

src/core/modules/memory/memory_tools.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ using namespace boost::python;
3939

4040
// DynamicHooks
4141
#include "manager.h"
42-
#include "conventions/x86MsCdecl.h"
43-
#include "conventions/x86MsThiscall.h"
44-
#include "conventions/x86MsStdcall.h"
45-
#include "conventions/x86GccCdecl.h"
46-
#include "conventions/x86GccThiscall.h"
4742

4843

4944
// Externals

0 commit comments

Comments
 (0)