Skip to content

Commit

Permalink
Fix includes
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth committed Jul 3, 2024
1 parent b666596 commit aa89203
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion include/BufferManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#ifndef LMMS_BUFFER_MANAGER_H
#define LMMS_BUFFER_MANAGER_H

#include <cstddef>
#include "lmms_export.h"
#include "lmms_basics.h"

namespace lmms
{
Expand Down
3 changes: 3 additions & 0 deletions include/SampleFrame.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@

#include "lmms_basics.h"

#include <algorithm>
#include <array>
#include <cmath>
#include <cstddef>


namespace lmms
Expand Down
1 change: 1 addition & 0 deletions include/TimePos.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#ifndef LMMS_TIME_POS_H
#define LMMS_TIME_POS_H

#include <cstddef>
#include "lmms_export.h"
#include "lmms_basics.h"

Expand Down
9 changes: 1 addition & 8 deletions include/lmms_basics.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,11 @@
#ifndef LMMS_TYPES_H
#define LMMS_TYPES_H

#include <cstddef>
#include <cstdint>
#include <limits>

#include "lmmsconfig.h"

#include <cstdint>
#include <array>

#include <cmath>
#include <algorithm>


namespace lmms
{

Expand Down
2 changes: 2 additions & 0 deletions plugins/ZynAddSubFx/LocalZynAddSubFx.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#ifndef LOCAL_ZYNADDSUBFX_H
#define LOCAL_ZYNADDSUBFX_H

#include <array>

#include "Note.h"

class Master;
Expand Down

0 comments on commit aa89203

Please sign in to comment.