mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 08:24:36 +02:00
CachedInterpreter: Use using aliases instead of typedef
This commit is contained in:
@@ -17,8 +17,8 @@
|
||||
|
||||
struct CachedInterpreter::Instruction
|
||||
{
|
||||
typedef void (*CommonCallback)(UGeckoInstruction);
|
||||
typedef bool (*ConditionalCallback)(u32 data);
|
||||
using CommonCallback = void (*)(UGeckoInstruction);
|
||||
using ConditionalCallback = bool (*)(u32);
|
||||
|
||||
Instruction() {}
|
||||
Instruction(const CommonCallback c, UGeckoInstruction i)
|
||||
|
Reference in New Issue
Block a user