From 1a8167867b136ae62463b26a871628526bff17b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 14 May 2020 10:15:48 +0200 Subject: Modernize remaining uses of 0/NULL instead of nullptr (C++11) Using clang-tidy's `modernize-use-nullptr`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html --- main/tests/test_shader_lang.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/tests/test_shader_lang.cpp') diff --git a/main/tests/test_shader_lang.cpp b/main/tests/test_shader_lang.cpp index b7967238a2..abcf30c97f 100644 --- a/main/tests/test_shader_lang.cpp +++ b/main/tests/test_shader_lang.cpp @@ -363,7 +363,7 @@ MainLoop *test() { Set types; types.insert("spatial"); - Error err = sl.compile(code, dt, rm, types, NULL); + Error err = sl.compile(code, dt, rm, types, nullptr); if (err) { -- cgit v1.2.3