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.
This commit is contained in:
Timothy Flynn 2023-01-18 16:46:08 -05:00 committed by Linus Groh
parent b217045f8f
commit 027aee2c66
6 changed files with 6 additions and 0 deletions

View file

@ -6,6 +6,7 @@
*/
#include "BarsVisualizationWidget.h"
#include <AK/IntegralMath.h>
#include <AK/Math.h>
#include <AK/TypedTransfer.h>
#include <LibDSP/FFT.h>

View file

@ -7,6 +7,7 @@
#pragma once
#include <AK/IntegralMath.h>
#include <LibGUI/Model.h>
namespace Profiler {

View file

@ -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>

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/IntegralMath.h>
#include <AK/Math.h>
#include <LibGPU/Image.h>

View file

@ -9,6 +9,7 @@
#include <AK/Assertions.h>
#include <AK/Format.h>
#include <AK/Forward.h>
#include <AK/Math.h>
#include <AK/SIMD.h>
#include <AK/StdLibExtras.h>
#include <LibIPC/Forward.h>

View file

@ -10,6 +10,7 @@
#endif
#include <AK/Array.h>
#include <AK/IntegralMath.h>
#include <AK/Math.h>
#include <AK/Vector.h>
#include <LibGfx/Filters/StackBlurFilter.h>