commit | ce48a1137d56d368828d360e5f2a8162bac6517c | [log] [tgz] |
---|---|---|
author | Howard Hinnant <hhinnant@apple.com> | Thu Jun 30 21:18:19 2011 +0000 |
committer | Howard Hinnant <hhinnant@apple.com> | Thu Jun 30 21:18:19 2011 +0000 |
tree | ec224d56b3d3a54fafbd14126993b38671f4ebec | |
parent | 070f96c567f7b0b3a0aa03178d2b6f05cdb2e447 [diff] [blame] |
_STD -> _VSTD to avoid macro clash on windows llvm-svn: 134190
diff --git a/libcxx/src/iostream.cpp b/libcxx/src/iostream.cpp index b4b29c8..157c397 100644 --- a/libcxx/src/iostream.cpp +++ b/libcxx/src/iostream.cpp
@@ -33,11 +33,11 @@ ios_base::Init::Init() { cin.tie(&cout); - _STD::unitbuf(cerr); + _VSTD::unitbuf(cerr); cerr.tie(&cout); wcin.tie(&wcout); - _STD::unitbuf(wcerr); + _VSTD::unitbuf(wcerr); wcerr.tie(&wcout); }