diff options
author | David Robillard <d@drobilla.net> | 2023-05-02 15:41:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-02 15:41:47 -0400 |
commit | b50503cd1d83c1fadb18a54610515e0e6e6b9429 (patch) | |
tree | 628b99c30ec36bddf939f272823eefe236ce78c5 /test | |
parent | c3470a1e057eb0e4f3b9153e2fe9ee9868aa25e3 (diff) | |
download | raul-b50503cd1d83c1fadb18a54610515e0e6e6b9429.tar.gz raul-b50503cd1d83c1fadb18a54610515e0e6e6b9429.tar.bz2 raul-b50503cd1d83c1fadb18a54610515e0e6e6b9429.zip |
Replace NULL with nullptr
Diffstat (limited to 'test')
-rw-r--r-- | test/build_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |