1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:17:44 +00:00

AK: Move integral log2 and exp to IntegerMath.h

This commit is contained in:
Hendiadyoin1 2022-01-29 16:51:02 +01:00 committed by Brian Gianforcaro
parent f6ddaef8bf
commit fbb798f98c
8 changed files with 20 additions and 16 deletions

View file

@ -8,6 +8,7 @@
#include <AK/FixedArray.h>
#include <AK/FlyString.h>
#include <AK/Format.h>
#include <AK/IntegralMath.h>
#include <AK/Math.h>
#include <AK/ScopeGuard.h>
#include <AK/StdLibExtras.h>

View file

@ -6,7 +6,7 @@
#include <AK/Array.h>
#include <AK/Debug.h>
#include <AK/Math.h>
#include <AK/IntegralMath.h>
#include <AK/Memory.h>
#include <AK/MemoryStream.h>
#include <AK/NonnullOwnPtrVector.h>

View file

@ -8,7 +8,7 @@
#include "MatroskaDocument.h"
#include <AK/Debug.h>
#include <AK/Math.h>
#include <AK/IntegralMath.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/Optional.h>
#include <AK/OwnPtr.h>