diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-02 14:41:58 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-02 14:56:01 +0200 |
commit | ea7b497065a615b6fd4e165b331f50613a63a329 (patch) | |
tree | be20ea6b308f2a989a76042ae4b7448711891f84 /platform/windows/godot_windows.cpp | |
parent | 058a0afdeca83145d58a95c426dd01216c397ea9 (diff) | |
download | redot-engine-ea7b497065a615b6fd4e165b331f50613a63a329.tar.gz |
Replace more occurrences of NULL with nullptr
Diffstat (limited to 'platform/windows/godot_windows.cpp')
-rw-r--r-- | platform/windows/godot_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/godot_windows.cpp b/platform/windows/godot_windows.cpp index 28884f70d2..2aa928c2a7 100644 --- a/platform/windows/godot_windows.cpp +++ b/platform/windows/godot_windows.cpp @@ -176,7 +176,7 @@ int _main() { wc_argv = CommandLineToArgvW(GetCommandLineW(), &argc); - if (NULL == wc_argv) { + if (nullptr == wc_argv) { wprintf(L"CommandLineToArgvW failed\n"); return 0; } |