mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Compilation fix
This commit is contained in:
parent
69a3db491c
commit
0c1bfefbc8
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ public:
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
typedef void(*psv_func_caller)(ARMv7Context&);
|
typedef void(*psv_func_caller)(ARMv7Context&);
|
||||||
#else
|
#else
|
||||||
typedef psv_func_caller std::function<void(ARMv7Context&)>;
|
typedef std::function<void(ARMv7Context&)> psv_func_caller;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Utilities for binding ARMv7Context to C++ function arguments received by HLE functions or sent to callbacks
|
// Utilities for binding ARMv7Context to C++ function arguments received by HLE functions or sent to callbacks
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
typedef void(*ps3_func_caller)(PPUThread&);
|
typedef void(*ps3_func_caller)(PPUThread&);
|
||||||
#else
|
#else
|
||||||
typedef ps3_func_caller std::function<void(PPUThread&)>;
|
typedef std::function<void(PPUThread&)> ps3_func_caller;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace ppu_func_detail
|
namespace ppu_func_detail
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue