mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 14:49:22 +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);
|
using AnyCallback = s32 (*)(PowerPC::PowerPCState& ppc_state, const void* operands);
|
||||||
|
|
||||||
template <class Operands>
|
template <class Operands>
|
||||||
static consteval Callback<Operands> CallbackCast(Callback<Operands> callback)
|
static Callback<Operands> CallbackCast(Callback<Operands> callback)
|
||||||
{
|
{
|
||||||
return callback;
|
return callback;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue