From 3b25c887368e2b7b4730adf0cffcd73f9a95edcf Mon Sep 17 00:00:00 2001 From: Rohit Nirmal Date: Wed, 1 Oct 2014 23:38:42 -0500 Subject: [PATCH] Change another NULL to nullptr. --- Source/Core/Core/PowerPC/JitArm64/Jit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.h b/Source/Core/Core/PowerPC/JitArm64/Jit.h index c8b2c7a1eb..05aeb0609c 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.h +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.h @@ -31,7 +31,7 @@ public: JitBaseBlockCache *GetBlockCache() { return &blocks; } - const u8 *BackPatch(u8 *codePtr, u32 em_address, void *ctx) { return NULL; } + const u8 *BackPatch(u8 *codePtr, u32 em_address, void *ctx) { return nullptr; } bool IsInCodeSpace(u8 *ptr) { return IsInSpace(ptr); }