summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-03-25 01:22:11 -0400
committerLioncash <mathew1800@gmail.com>2018-03-25 02:57:25 -0400
commit48e2e9a41d818db220cb960779b0e4b6ae24530f (patch)
treeb8d1324118287a756325a75dc18fdd3053748ba7 /Source
parent9829083241846b44ae430783fe36b3ae9ea75cea (diff)
CachedInterpreter: Use using aliases instead of typedef
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp
index 73159c15bb..9ff81b6924 100644
--- a/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp
+++ b/Source/Core/Core/PowerPC/CachedInterpreter/CachedInterpreter.cpp
@@ -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)