From 72ec2c21f41576162117425ccf1b2f707f1ecac7 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Sun, 23 Jan 2022 22:06:11 +0100 Subject: [PATCH] LibGL: Remove superfluous `AK::dbgln` alias --- Userland/Libraries/LibGL/SoftwareGLContext.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibGL/SoftwareGLContext.cpp b/Userland/Libraries/LibGL/SoftwareGLContext.cpp index a6354ed227..5b2b0b1bea 100644 --- a/Userland/Libraries/LibGL/SoftwareGLContext.cpp +++ b/Userland/Libraries/LibGL/SoftwareGLContext.cpp @@ -20,8 +20,6 @@ #include #include -using AK::dbgln; - namespace GL { static constexpr size_t MODELVIEW_MATRIX_STACK_LIMIT = 64;