diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2022-01-23 22:06:11 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-02-22 23:48:59 +0000 |
commit | 72ec2c21f41576162117425ccf1b2f707f1ecac7 (patch) | |
tree | 140196d012d62746ee5b06490a4fbf2491d8f978 | |
parent | 6318522339786e5e25a70f5c95b863ab457f4471 (diff) | |
download | serenity-72ec2c21f41576162117425ccf1b2f707f1ecac7.zip |
LibGL: Remove superfluous `AK::dbgln` alias
-rw-r--r-- | Userland/Libraries/LibGL/SoftwareGLContext.cpp | 2 |
1 files changed, 0 insertions, 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 <LibSoftGPU/Device.h> #include <LibSoftGPU/Enums.h> -using AK::dbgln; - namespace GL { static constexpr size_t MODELVIEW_MATRIX_STACK_LIMIT = 64; |