diff options
author | Hendiadyoin1 <leon2002.la@gmail.com> | 2022-01-29 16:51:02 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-02-06 17:52:33 +0000 |
commit | fbb798f98c86c2422de006425dd8f87fda1d5b55 (patch) | |
tree | 471afe0c131c2404ed1cbf023424323a6469eda3 /Userland/Libraries/LibVideo/MatroskaReader.h | |
parent | f6ddaef8bf4be70d2409be2a8ee47fb8e36bfd24 (diff) | |
download | serenity-fbb798f98c86c2422de006425dd8f87fda1d5b55.zip |
AK: Move integral log2 and exp to IntegerMath.h
Diffstat (limited to 'Userland/Libraries/LibVideo/MatroskaReader.h')
-rw-r--r-- | Userland/Libraries/LibVideo/MatroskaReader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibVideo/MatroskaReader.h b/Userland/Libraries/LibVideo/MatroskaReader.h index 29fc992e68..5995bbdc6e 100644 --- a/Userland/Libraries/LibVideo/MatroskaReader.h +++ b/Userland/Libraries/LibVideo/MatroskaReader.h @@ -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> |