diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-06-30 21:18:19 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-06-30 21:18:19 +0000 |
commit | ce48a1137d56d368828d360e5f2a8162bac6517c (patch) | |
tree | ec224d56b3d3a54fafbd14126993b38671f4ebec /libcxx/src/iostream.cpp | |
parent | 070f96c567f7b0b3a0aa03178d2b6f05cdb2e447 (diff) | |
download | bcm5719-llvm-ce48a1137d56d368828d360e5f2a8162bac6517c.tar.gz bcm5719-llvm-ce48a1137d56d368828d360e5f2a8162bac6517c.zip |
_STD -> _VSTD to avoid macro clash on windows
llvm-svn: 134190
Diffstat (limited to 'libcxx/src/iostream.cpp')
-rw-r--r-- | libcxx/src/iostream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/iostream.cpp b/libcxx/src/iostream.cpp index b4b29c8e1e0..157c3977d47 100644 --- a/libcxx/src/iostream.cpp +++ b/libcxx/src/iostream.cpp @@ -33,11 +33,11 @@ ios_base::Init __start_std_streams; 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); } |