[libc++][NFC] Remove remnants of _LIBCPP_HAS_NO_STDOUT, which should have been removed by 87dd51983c

This commit is contained in:
Louis Dionne 2021-09-09 14:26:43 -04:00
parent 543604f30e
commit 367a9e709d
2 changed files with 0 additions and 10 deletions

View File

@ -24,11 +24,6 @@
int main(int, char**) {
std::cerr << "1234";
assert(std::cerr.flags() & std::ios_base::unitbuf);
#ifdef _LIBCPP_HAS_NO_STDOUT
assert(std::cerr.tie() == NULL);
#else
assert(std::cerr.tie() == &std::cout);
#endif
return 0;
}

View File

@ -24,11 +24,6 @@
int main(int, char**) {
std::wcerr << L"1234";
assert(std::wcerr.flags() & std::ios_base::unitbuf);
#ifdef _LIBCPP_HAS_NO_STDOUT
assert(std::wcerr.tie() == NULL);
#else
assert(std::wcerr.tie() == &std::wcout);
#endif
return 0;
}