Skip to content

Commit

Permalink
Fix OS X compilation with C++17
Browse files Browse the repository at this point in the history
  • Loading branch information
JanSimek committed Jun 2, 2024
1 parent 4f85261 commit 58cd866
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
3 changes: 1 addition & 2 deletions src/format/frm/Direction.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

#include <cstdint>
#include <vector>
#include "Frame.h"

namespace geck {

class Frame;

class Direction {
private:
int16_t _shiftX = 0;
Expand Down
3 changes: 0 additions & 3 deletions src/format/frm/Frm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@
#include "Frame.h"
#include "../pal/Pal.h"

#include <numeric>
#include <algorithm>

#include <spdlog/spdlog.h>

namespace geck {

const std::vector<Direction>& Frm::directions() const {
Expand Down
3 changes: 1 addition & 2 deletions src/format/frm/Frm.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
#include <vector>

#include "../IFile.h"
#include "Direction.h"

namespace geck {

class Direction;

class Frm : public IFile {
private:
uint32_t _version;
Expand Down

0 comments on commit 58cd866

Please sign in to comment.