From 54c454fc82a3f36d34e70516458de4ea7378970e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 2 Oct 2014 00:05:27 -0400 Subject: [PATCH] Jit64: Change a NULL to nullptr --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 050151a611..5877073377 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -141,7 +141,7 @@ void Jit64::FreeStack() if (m_stack) { FreeMemoryPages(m_stack, STACK_SIZE); - m_stack = NULL; + m_stack = nullptr; } #endif }