diff options
author | Tim Schumacher <timschumi@gmx.de> | 2023-01-20 14:07:24 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-29 19:16:44 -0700 |
commit | ae64b68717c02b902721e861dbf51c5d32950193 (patch) | |
tree | 74e7205b629f9a51d0af3103ce9fabca1aeefe23 /Userland/Libraries/LibGfx/QOIWriter.cpp | |
parent | 230cb3b0cb9664839c56f80d6dff3706fffc2243 (diff) | |
download | serenity-ae64b68717c02b902721e861dbf51c5d32950193.zip |
AK: Deprecate the old `AK::Stream`
This also removes a few cases where the respective header wasn't
actually required to be included.
Diffstat (limited to 'Userland/Libraries/LibGfx/QOIWriter.cpp')
-rw-r--r-- | Userland/Libraries/LibGfx/QOIWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGfx/QOIWriter.cpp b/Userland/Libraries/LibGfx/QOIWriter.cpp index 77a1db8e14..56faf6042d 100644 --- a/Userland/Libraries/LibGfx/QOIWriter.cpp +++ b/Userland/Libraries/LibGfx/QOIWriter.cpp @@ -6,6 +6,7 @@ #include "QOIWriter.h" #include <AK/DeprecatedString.h> +#include <AK/Endian.h> namespace Gfx { |