diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-03-12 09:40:40 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-12 10:59:53 -0500 |
commit | 3b3e2374c9e5f73de76b353f3607c52b864d1e69 (patch) | |
tree | 340733687864525f67dfa0ebd83d435e61891a29 /platform/linuxbsd/wayland/detect_prime_egl.cpp | |
parent | b18942d429c23112c3e01aa1649c1704eaf86d0d (diff) | |
download | redot-engine-3b3e2374c9e5f73de76b353f3607c52b864d1e69.tar.gz |
clang-tidy: Enforce `modernize-use-nullptr`
Diffstat (limited to 'platform/linuxbsd/wayland/detect_prime_egl.cpp')
-rw-r--r-- | platform/linuxbsd/wayland/detect_prime_egl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/wayland/detect_prime_egl.cpp b/platform/linuxbsd/wayland/detect_prime_egl.cpp index 4bee32ae3a..4c97a80039 100644 --- a/platform/linuxbsd/wayland/detect_prime_egl.cpp +++ b/platform/linuxbsd/wayland/detect_prime_egl.cpp @@ -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)) { |