mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-22 12:35:21 +00: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)
|
||||
typedef void(*psv_func_caller)(ARMv7Context&);
|
||||
#else
|
||||
typedef psv_func_caller std::function<void(ARMv7Context&)>;
|
||||
typedef std::function<void(ARMv7Context&)> psv_func_caller;
|
||||
#endif
|
||||
|
||||
// Utilities for binding ARMv7Context to C++ function arguments received by HLE functions or sent to callbacks
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#if defined(_MSC_VER)
|
||||
typedef void(*ps3_func_caller)(PPUThread&);
|
||||
#else
|
||||
typedef ps3_func_caller std::function<void(PPUThread&)>;
|
||||
typedef std::function<void(PPUThread&)> ps3_func_caller;
|
||||
#endif
|
||||
|
||||
namespace ppu_func_detail
|
||||
|
|
Loading…
Add table
Reference in a new issue