1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:37:43 +00:00

LibM: Always include <math.h> instead of <LibM/math.h>

This makes Lagom pick up the host math.h, which is what we want.
This commit is contained in:
Andreas Kling 2020-08-04 19:06:27 +02:00
parent 45b05e9734
commit dc12cbca41
16 changed files with 17 additions and 17 deletions

View file

@ -30,7 +30,7 @@
#include <AK/MappedFile.h>
#include <AK/NonnullOwnPtrVector.h>
#include <LibGfx/GIFLoader.h>
#include <LibM/math.h>
#include <math.h>
#include <stdio.h>
#include <string.h>
@ -546,7 +546,7 @@ GIFImageDecoderPlugin::GIFImageDecoderPlugin(const u8* data, size_t size)
m_context->data_size = size;
}
GIFImageDecoderPlugin::~GIFImageDecoderPlugin() {}
GIFImageDecoderPlugin::~GIFImageDecoderPlugin() { }
IntSize GIFImageDecoderPlugin::size()
{