diff --git a/rpcs3/Emu/ARMv7/PSVFuncList.h b/rpcs3/Emu/ARMv7/PSVFuncList.h index 1dab68fcb5..af64ae5c83 100644 --- a/rpcs3/Emu/ARMv7/PSVFuncList.h +++ b/rpcs3/Emu/ARMv7/PSVFuncList.h @@ -36,7 +36,7 @@ public: #if defined(_MSC_VER) typedef void(*psv_func_caller)(ARMv7Context&); #else -typedef psv_func_caller std::function; +typedef std::function psv_func_caller; #endif // Utilities for binding ARMv7Context to C++ function arguments received by HLE functions or sent to callbacks diff --git a/rpcs3/Emu/SysCalls/SC_FUNC.h b/rpcs3/Emu/SysCalls/SC_FUNC.h index 0c7186de6f..625f2145e7 100644 --- a/rpcs3/Emu/SysCalls/SC_FUNC.h +++ b/rpcs3/Emu/SysCalls/SC_FUNC.h @@ -4,7 +4,7 @@ #if defined(_MSC_VER) typedef void(*ps3_func_caller)(PPUThread&); #else -typedef ps3_func_caller std::function; +typedef std::function ps3_func_caller; #endif namespace ppu_func_detail