1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:57:35 +00:00

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

This reverts commit dc12cbca41.

Sadly this broke the build due to some confusion about <new>.
Reverting until this can be solved fully.
This commit is contained in:
Andreas Kling 2020-08-04 21:17:43 +02:00
parent 000ef0ec3d
commit 984683cf34
16 changed files with 17 additions and 17 deletions

View file

@ -31,7 +31,7 @@
#include <LibGUI/Menu.h>
#include <LibGUI/Painter.h>
#include <LibGfx/Rect.h>
#include <math.h>
#include <LibM/math.h>
namespace PixelPaint {

View file

@ -30,7 +30,7 @@
#include <LibGUI/Action.h>
#include <LibGUI/Menu.h>
#include <LibGUI/Painter.h>
#include <math.h>
#include <LibM/math.h>
namespace PixelPaint {

View file

@ -31,7 +31,7 @@
#include <LibGUI/Menu.h>
#include <LibGUI/Painter.h>
#include <LibGfx/Rect.h>
#include <math.h>
#include <LibM/math.h>
namespace PixelPaint {

View file

@ -33,7 +33,7 @@
#include <LibGUI/Menu.h>
#include <LibGUI/Painter.h>
#include <LibGfx/Bitmap.h>
#include <math.h>
#include <LibM/math.h>
#include <stdio.h>
namespace PixelPaint {

View file

@ -27,7 +27,7 @@
#include "SampleWidget.h"
#include <LibAudio/Buffer.h>
#include <LibGUI/Painter.h>
#include <math.h>
#include <LibM/math.h>
SampleWidget::SampleWidget()
{

View file

@ -30,7 +30,7 @@
#include <LibGUI/Button.h>
#include <LibGUI/Label.h>
#include <LibGUI/MessageBox.h>
#include <math.h>
#include <LibM/math.h>
SoundPlayerWidget::SoundPlayerWidget(GUI::Window& window, NonnullRefPtr<Audio::ClientConnection> connection)
: m_window(window)