Skip to content

Commit

Permalink
Workaround for MSVC bug in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Rouslan committed Nov 1, 2024
1 parent 3aef1bf commit 6ed3bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/misc_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ int main() {
}};

std::vector<std::span<const poly_ops::point_t<int>>> current{loops.begin(),loops.end()};
for_each_combination(current,[](auto &data) {
for_each_combination(current,[](std::span<std::span<const poly_ops::point_t<int>>> data) {
/* This shape should decompose into exactly 10 shapes and 0 holes */
auto out = poly_ops::normalize_op<true,int>(data);
expect(out.size() == 10_u);
Expand Down

0 comments on commit 6ed3bf6

Please sign in to comment.