Skip to content

Commit

Permalink
wa for circle 198
Browse files Browse the repository at this point in the history
  • Loading branch information
alfC committed May 26, 2024
1 parent 65e74ce commit bc3393b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/initializer_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ BOOST_AUTO_TEST_CASE(multi_tests_initializer_list_1d) {
BOOST_AUTO_TEST_CASE(multi_tests_initializer_list_1d_ctad) {
#if defined(__cpp_deduction_guides) && !defined(__NVCC__)
{
// #if !defined(__circle_build__) // crashes circle 198
#if !defined(__circle_build__) || (__circle_build__ != 198 ) // crashes circle 198
multi::static_array const arr = {12, 34, 56};
BOOST_TEST_REQUIRE( size(arr) == 3 );
BOOST_TEST_REQUIRE( arr[2] == 56 );
BOOST_TEST_REQUIRE(( arr == multi::static_array{12, 34, 56} ));
// #endif
#endif
}
{
multi::array arr({12, 34, 56});
Expand Down

0 comments on commit bc3393b

Please sign in to comment.