Skip to content

Commit 58ab844

Browse files
committed
tests: fix static asserts
1 parent 61a5556 commit 58ab844

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/test/std/algorithms/alg.sorting/alg.sort/stable.sort/stable_sort.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ TEST_CONSTEXPR_CXX26
8484
void
8585
test_larger_sorts()
8686
{
87-
static_assert(N != 0);
88-
static_assert(M != 0);
87+
static_assert(N != 0, "");
88+
static_assert(M != 0, "");
8989
// create array length N filled with M different numbers
9090
std::array<int, N> array_;
9191
int* array = array_.data();

0 commit comments

Comments
 (0)