diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-18 16:46:08 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-19 11:29:48 +0000 |
commit | 027aee2c6616f63523dc4ada723910b92f522292 (patch) | |
tree | 893cc7a9eac4cb4d08658a59ad3c17b08903553e /Userland/Libraries/LibGPU/Image.cpp | |
parent | b217045f8f8f2484707f0a481926416e5847c7d8 (diff) | |
download | serenity-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/LibGPU/Image.cpp')
-rw-r--r-- | Userland/Libraries/LibGPU/Image.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGPU/Image.cpp b/Userland/Libraries/LibGPU/Image.cpp index 62106ccbdf..eab7f30efa 100644 --- a/Userland/Libraries/LibGPU/Image.cpp +++ b/Userland/Libraries/LibGPU/Image.cpp @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include <AK/IntegralMath.h> #include <AK/Math.h> #include <LibGPU/Image.h> |