diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-04 21:17:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-04 21:17:43 +0200 |
commit | 984683cf34ee471bfbd2e0d3eca3517d0c2dce97 (patch) | |
tree | 211f7992cf00c049c741a9a5c31470a7c07b46b8 /Libraries/LibGfx/ICOLoader.cpp | |
parent | 000ef0ec3d0025753a545f14705e0046f92f4875 (diff) | |
download | serenity-984683cf34ee471bfbd2e0d3eca3517d0c2dce97.zip |
Revert "LibM: Always include <math.h> instead of <LibM/math.h>"
This reverts commit dc12cbca41b8b667ae7ced1066647d47186d1557.
Sadly this broke the build due to some confusion about <new>.
Reverting until this can be solved fully.
Diffstat (limited to 'Libraries/LibGfx/ICOLoader.cpp')
-rw-r--r-- | Libraries/LibGfx/ICOLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGfx/ICOLoader.cpp b/Libraries/LibGfx/ICOLoader.cpp index c75aae04b2..3026ce0f9d 100644 --- a/Libraries/LibGfx/ICOLoader.cpp +++ b/Libraries/LibGfx/ICOLoader.cpp @@ -32,7 +32,7 @@ #include <AK/Types.h> #include <LibGfx/ICOLoader.h> #include <LibGfx/PNGLoader.h> -#include <math.h> +#include <LibM/math.h> #include <stdio.h> #include <string.h> |