mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:17:45 +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:
parent
45b05e9734
commit
dc12cbca41
16 changed files with 17 additions and 17 deletions
|
@ -31,7 +31,7 @@
|
|||
#include <LibGUI/Menu.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibGfx/Rect.h>
|
||||
#include <LibM/math.h>
|
||||
#include <math.h>
|
||||
|
||||
namespace PixelPaint {
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <LibGUI/Action.h>
|
||||
#include <LibGUI/Menu.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibM/math.h>
|
||||
#include <math.h>
|
||||
|
||||
namespace PixelPaint {
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <LibGUI/Menu.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibGfx/Rect.h>
|
||||
#include <LibM/math.h>
|
||||
#include <math.h>
|
||||
|
||||
namespace PixelPaint {
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <LibGUI/Menu.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibGfx/Bitmap.h>
|
||||
#include <LibM/math.h>
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace PixelPaint {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "SampleWidget.h"
|
||||
#include <LibAudio/Buffer.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibM/math.h>
|
||||
#include <math.h>
|
||||
|
||||
SampleWidget::SampleWidget()
|
||||
{
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <LibGUI/Button.h>
|
||||
#include <LibGUI/Label.h>
|
||||
#include <LibGUI/MessageBox.h>
|
||||
#include <LibM/math.h>
|
||||
#include <math.h>
|
||||
|
||||
SoundPlayerWidget::SoundPlayerWidget(GUI::Window& window, NonnullRefPtr<Audio::ClientConnection> connection)
|
||||
: m_window(window)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue