summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCompress
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2023-01-18 16:46:08 -0500
committerLinus Groh <mail@linusgroh.de>2023-01-19 11:29:48 +0000
commit027aee2c6616f63523dc4ada723910b92f522292 (patch)
tree893cc7a9eac4cb4d08658a59ad3c17b08903553e /Userland/Libraries/LibCompress
parentb217045f8f8f2484707f0a481926416e5847c7d8 (diff)
downloadserenity-027aee2c6616f63523dc4ada723910b92f522292.zip
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.
Diffstat (limited to 'Userland/Libraries/LibCompress')
-rw-r--r--Userland/Libraries/LibCompress/Zlib.cpp1
1 files changed, 1 insertions, 0 deletions
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 <AK/IntegralMath.h>
#include <AK/Span.h>
#include <AK/TypeCasts.h>
#include <AK/Types.h>