General: Replace NULL and '0' usages with nullptr where applicable
This commit is contained in:
parent
506ab06238
commit
60b3fc01a2
11 changed files with 38 additions and 38 deletions
|
@ -206,7 +206,7 @@ static const char *opcode_names[] = {
|
|||
"swi",
|
||||
"tst",
|
||||
|
||||
NULL
|
||||
nullptr
|
||||
};
|
||||
|
||||
// Indexed by the shift type (bits 6-5)
|
||||
|
@ -399,7 +399,7 @@ std::string ARM_Disasm::Disassemble(u32 addr, u32 insn)
|
|||
default:
|
||||
return "Error";
|
||||
}
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::string ARM_Disasm::DisassembleALU(Opcode opcode, u32 insn)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue