diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-02 17:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 17:37:09 +0200 |
commit | b50387c8bf2737e7f100c6c32350d97301a6f2a3 (patch) | |
tree | 34402b0e324fc512a6cd8bd5bc85a3cc042fec30 /platform/windows/godot_windows.cpp | |
parent | 6a38ce1b318cc71c285c11f5b52f04a681c309fd (diff) | |
parent | ea7b497065a615b6fd4e165b331f50613a63a329 (diff) |
Merge pull request #37521 from akien-mga/more-nullptr
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; } |