Skip to content

Commit cc7878b

Browse files
Address @mordante's review comments
1 parent b9b392a commit cc7878b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ TEST_CONSTEXPR_CXX26 void test() {
295295
assert(std::is_partitioned(vec.begin(), vec.end(), [](int i) { return i < 5; }));
296296
getGlobalMemCounter()->reset();
297297
}
298-
# endif
299-
#endif // TEST_STD_VER >= 11 && !defined(TEST_HAS_NO_EXCEPTIONS)
298+
# endif // !defined(TEST_COMPILER_GCC)
299+
#endif // TEST_STD_VER >= 11 && !defined(TEST_HAS_NO_EXCEPTIONS)
300300
}
301301

302302
#if TEST_STD_VER >= 11

0 commit comments

Comments
 (0)