summaryrefslogtreecommitdiff
path: root/src/iostream.cpp
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-06-30 21:18:19 +0000
committerHoward Hinnant <hhinnant@apple.com>2011-06-30 21:18:19 +0000
commit0949eedbd621bc1611266fb180d9a356ee1eaf9f (patch)
tree32980a76874f97a8dfca6329b5b3eb9213a3be60 /src/iostream.cpp
parentd318d49e5c74179d0f4f9a79ab0f54a9531c5513 (diff)
_STD -> _VSTD to avoid macro clash on windows
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@134190 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'src/iostream.cpp')
-rw-r--r--src/iostream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iostream.cpp b/src/iostream.cpp
index b4b29c8e1..157c3977d 100644
--- a/src/iostream.cpp
+++ b/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);
}