Minor fix removing consteval in CallbackCast to fix Windows VS build error

This commit is contained in:
Nitch2024 2025-03-25 17:43:32 -07:00
parent c519875d41
commit e16918cfbe

View file

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