diff options
| author | Rohit Nirmal <rohitnirmal9@gmail.com> | 2015-03-14 20:20:41 -0500 |
|---|---|---|
| committer | Rohit Nirmal <rohitnirmal9@gmail.com> | 2015-03-14 20:20:41 -0500 |
| commit | 48ec42d4a01b9dd3db4316a3de1230e3f3fffe07 (patch) | |
| tree | ffb814df1ab96236e19e18afa6f4c7202efe249b /Source/Core/Common/StringUtil.cpp | |
| parent | 2134770d7a4596b50a32d96d0e7c5a3dac6b81ff (diff) | |
Core: Change NULLs to nullptrs.
Diffstat (limited to 'Source/Core/Common/StringUtil.cpp')
| -rw-r--r-- | Source/Core/Common/StringUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp index 7f233e430d..3f201f321f 100644 --- a/Source/Core/Common/StringUtil.cpp +++ b/Source/Core/Common/StringUtil.cpp @@ -29,7 +29,7 @@ #if !defined(_WIN32) && !defined(ANDROID) static locale_t GetCLocale() { - static locale_t c_locale = newlocale(LC_ALL_MASK, "C", NULL); + static locale_t c_locale = newlocale(LC_ALL_MASK, "C", nullptr); return c_locale; } #endif |
