From b50503cd1d83c1fadb18a54610515e0e6e6b9429 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 2 May 2023 15:41:47 -0400 Subject: Replace NULL with nullptr --- test/build_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/build_test.cpp b/test/build_test.cpp index bcfef64..169c331 100644 --- a/test/build_test.cpp +++ b/test/build_test.cpp @@ -45,7 +45,7 @@ main() #if !defined(_WIN32) && !defined(__EMSCRIPTEN__) # if !defined(_FORTIFY_SOURCE) - const char* cmd[] = {"echo", NULL}; + const char* cmd[] = {"echo", nullptr}; raul::Process::launch(cmd); # endif -- cgit v1.2.1