Compilation fix

This commit is contained in:
Nekotekina 2015-02-20 21:00:53 +03:00
parent 69a3db491c
commit 0c1bfefbc8
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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