1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

clang-tidy: Enforce modernize-use-nullptr

This commit is contained in:
Thaddeus Crews
2024-03-12 09:40:40 -05:00
parent b18942d429
commit 3b3e2374c9
24 changed files with 98 additions and 100 deletions

View File

@@ -69,7 +69,7 @@ void DetectPrimeEGL::create_context() {
EGLConfig egl_config;
EGLContext egl_context = EGL_NO_CONTEXT;
eglInitialize(egl_display, NULL, NULL);
eglInitialize(egl_display, nullptr, nullptr);
#if defined(GLAD_ENABLED)
if (!gladLoaderLoadEGL(egl_display)) {