summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-10-02 00:41:22 -0400
committerLioncash <mathew1800@gmail.com>2014-10-02 00:41:22 -0400
commit95ea7d7c9fd349da8fcc444b26b7bbe7baf2d030 (patch)
treea1673ee7f8749af34aa370ffe5d2efa1e8f0c33c
parent25fd805f54638f19e78ffb7a49a73fa5dfd30e68 (diff)
parent3b25c887368e2b7b4730adf0cffcd73f9a95edcf (diff)
Merge pull request #1205 from rohit-n/null-nullptr
Change another NULL to nullptr.
-rw-r--r--Source/Core/Core/PowerPC/JitArm64/Jit.h2
1 files changed, 1 insertions, 1 deletions
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); }