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/Games | |
parent | f6ddaef8bf4be70d2409be2a8ee47fb8e36bfd24 (diff) | |
download | serenity-fbb798f98c86c2422de006425dd8f87fda1d5b55.zip |
AK: Move integral log2 and exp to IntegerMath.h
Diffstat (limited to 'Userland/Games')
-rw-r--r-- | Userland/Games/2048/GameSizeDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/2048/GameSizeDialog.cpp b/Userland/Games/2048/GameSizeDialog.cpp index 8fda481852..3f4ccd3a4e 100644 --- a/Userland/Games/2048/GameSizeDialog.cpp +++ b/Userland/Games/2048/GameSizeDialog.cpp @@ -6,7 +6,7 @@ #include "GameSizeDialog.h" #include "Game.h" -#include <AK/Math.h> +#include <AK/IntegralMath.h> #include <LibGUI/BoxLayout.h> #include <LibGUI/Button.h> #include <LibGUI/CheckBox.h> |