Skip to content

Commit

Permalink
test: fix MacOS port
Browse files Browse the repository at this point in the history
  • Loading branch information
quesnel committed May 23, 2024
1 parent fca99bf commit 989b3ae
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/test/public-api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include <cstdio>

#include <boost/ut.hpp>
#include <type_traits>

irt::static_memory_resource<256 * 256 * 16> mem;

Expand Down Expand Up @@ -1262,6 +1261,14 @@ int main()

"id-data-array"_test = [] {
struct pos3d {
pos3d() = default;

pos3d(float x_, float y_, float z_)
: x(x_)
, y(y_)
, z(z_)
{}

float x, y, z;
};

Expand Down

0 comments on commit 989b3ae

Please sign in to comment.