diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-10-02 00:09:51 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-10-02 00:09:51 -0400 |
| commit | 25fd805f54638f19e78ffb7a49a73fa5dfd30e68 (patch) | |
| tree | 0050c2324bf9db1e13a008fd062db464886fac69 /Source/Core | |
| parent | 68edddf10efbabe49f4a43e55fa4652aee800a45 (diff) | |
| parent | 54c454fc82a3f36d34e70516458de4ea7378970e (diff) | |
Merge pull request #1204 from lioncash/null
Jit64: Change a NULL to nullptr
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64/Jit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |
