CachedInterpreter: Use using aliases instead of typedef

This commit is contained in:
Lioncash 2018-03-25 01:22:11 -04:00
parent 9829083241
commit 48e2e9a41d
1 changed files with 2 additions and 2 deletions

View File

@ -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)