From 027aee2c6616f63523dc4ada723910b92f522292 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 18 Jan 2023 16:46:08 -0500 Subject: Userland: Add missing Math.h and IntegralMath.h header includes These are currently being implicitly including by FixedPoint.h by way of Format.h. The former will soon be removed from the latter, which would otherwise cause a compile error in these files. --- Userland/Libraries/LibCompress/Zlib.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Userland/Libraries/LibCompress') diff --git a/Userland/Libraries/LibCompress/Zlib.cpp b/Userland/Libraries/LibCompress/Zlib.cpp index f4ff61b5c1..db1f5558e5 100644 --- a/Userland/Libraries/LibCompress/Zlib.cpp +++ b/Userland/Libraries/LibCompress/Zlib.cpp @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include #include #include #include -- cgit v1.2.3