mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 03:24:59 +00:00
Minor fix removing consteval in CallbackCast to fix Windows VS build error
This commit is contained in:
parent
c519875d41
commit
e16918cfbe
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ protected:
|
|||
using AnyCallback = s32 (*)(PowerPC::PowerPCState& ppc_state, const void* operands);
|
||||
|
||||
template <class Operands>
|
||||
static consteval Callback<Operands> CallbackCast(Callback<Operands> callback)
|
||||
static Callback<Operands> CallbackCast(Callback<Operands> callback)
|
||||
{
|
||||
return callback;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue