Skip to content

Commit 367a9e7

Browse files
committed
[libc++][NFC] Remove remnants of _LIBCPP_HAS_NO_STDOUT, which should have been removed by 87dd519
1 parent 543604f commit 367a9e7

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

libcxx/test/std/input.output/iostream.objects/narrow.stream.objects/cerr.sh.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@
2424
int main(int, char**) {
2525
std::cerr << "1234";
2626
assert(std::cerr.flags() & std::ios_base::unitbuf);
27-
28-
#ifdef _LIBCPP_HAS_NO_STDOUT
29-
assert(std::cerr.tie() == NULL);
30-
#else
3127
assert(std::cerr.tie() == &std::cout);
32-
#endif
3328
return 0;
3429
}

libcxx/test/std/input.output/iostream.objects/wide.stream.objects/wcerr.sh.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@
2424
int main(int, char**) {
2525
std::wcerr << L"1234";
2626
assert(std::wcerr.flags() & std::ios_base::unitbuf);
27-
28-
#ifdef _LIBCPP_HAS_NO_STDOUT
29-
assert(std::wcerr.tie() == NULL);
30-
#else
3127
assert(std::wcerr.tie() == &std::wcout);
32-
#endif
3328
return 0;
3429
}

0 commit comments

Comments
 (0)