Skip to content

Commit 087491b

Browse files
committed
#4
I don't like data_tree anyways
1 parent 1aa1860 commit 087491b

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/include/sndx/data/data_tree.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#ifndef __APPLE__
34
#include <cstdint>
45
#include <variant>
56
#include <string>
@@ -866,3 +867,4 @@ namespace sndx::data {
866867
}
867868
};
868869
}
870+
#endif

src/include/sndx/input/window_backend.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
#include <glm/gtx/component_wise.hpp>
1111
#endif
1212

13+
#include <algorithm>
1314
#include <stdexcept>
15+
#include <string>
16+
#include <string_view>
1417
#include <optional>
1518

1619
namespace sndx::input {

src/tests/data/data_tree.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2+
#ifndef __APPLE__
13
#include "data/data_tree.hpp"
24

35
#include "../common.hpp"
@@ -283,3 +285,4 @@ TEST_F(DataTreeTest, DataCanBeAssigned) {
283285
EXPECT_EQ(b, data::DataArray(10, 20));
284286
EXPECT_EQ(c, data::DataArray(5, 10));
285287
}
288+
#endif

0 commit comments

Comments
 (0)