Skip to content

Commit 388da6a

Browse files
authored
[libc++][test] Removes Clang 16 validation. (#88558)
1 parent 41a8305 commit 388da6a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

libcxx/test/libcxx/containers/sequences/vector/asan.pass.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ void do_exit() {
2929

3030
int main(int, char**)
3131
{
32-
#if TEST_STD_VER >= 11 && TEST_CLANG_VER >= 1600
33-
// TODO(LLVM-18): Remove the special-casing
32+
#if TEST_STD_VER >= 11
3433
{
3534
typedef int T;
3635
typedef cpp17_input_iterator<T*> MyInputIter;
@@ -52,7 +51,7 @@ int main(int, char**)
5251
assert(v[1] == 'b');
5352
assert(is_contiguous_container_asan_correct(v));
5453
}
55-
#endif
54+
#endif // TEST_STD_VER >= 11
5655
{
5756
typedef cpp17_input_iterator<int*> MyInputIter;
5857
// Sould not trigger ASan.

0 commit comments

Comments
 (0)