CachedInterpreter: Use using aliases instead of typedef
This commit is contained in:
parent
9829083241
commit
48e2e9a41d
|
@ -17,8 +17,8 @@
|
||||||
|
|
||||||
struct CachedInterpreter::Instruction
|
struct CachedInterpreter::Instruction
|
||||||
{
|
{
|
||||||
typedef void (*CommonCallback)(UGeckoInstruction);
|
using CommonCallback = void (*)(UGeckoInstruction);
|
||||||
typedef bool (*ConditionalCallback)(u32 data);
|
using ConditionalCallback = bool (*)(u32);
|
||||||
|
|
||||||
Instruction() {}
|
Instruction() {}
|
||||||
Instruction(const CommonCallback c, UGeckoInstruction i)
|
Instruction(const CommonCallback c, UGeckoInstruction i)
|
||||||
|
|
Loading…
Reference in New Issue