From 7cc50d614c6d8ddd245bede15654d894220d882a Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 11 Nov 2021 07:30:37 -0500 Subject: [PATCH] LibGfx: Include Vector.h in PNGLoader.cpp This was being transitively included from Deflate.h on SerenityOS builds but not on Lagom builds. --- Userland/Libraries/LibGfx/PNGLoader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibGfx/PNGLoader.cpp b/Userland/Libraries/LibGfx/PNGLoader.cpp index 990356de78..fee064fde5 100644 --- a/Userland/Libraries/LibGfx/PNGLoader.cpp +++ b/Userland/Libraries/LibGfx/PNGLoader.cpp @@ -6,6 +6,7 @@ #include #include +#include #include #include #include