mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
IR: Convert typedefs to using aliases
This commit is contained in:
parent
f785d7f869
commit
d1f39185dd
1 changed files with 2 additions and 2 deletions
|
@ -182,8 +182,8 @@ enum Opcode
|
|||
Int3
|
||||
};
|
||||
|
||||
typedef unsigned Inst;
|
||||
typedef Inst* InstLoc;
|
||||
using Inst = u32;
|
||||
using InstLoc = Inst*;
|
||||
|
||||
unsigned inline getOpcode(Inst i)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue