summaryrefslogtreecommitdiffstats
path: root/libcxx/src/strstream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/src/strstream.cpp')
-rw-r--r--libcxx/src/strstream.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/src/strstream.cpp b/libcxx/src/strstream.cpp
index ef12f982fe7..c2b7f42aac6 100644
--- a/libcxx/src/strstream.cpp
+++ b/libcxx/src/strstream.cpp
@@ -150,10 +150,10 @@ void
strstreambuf::swap(strstreambuf& __rhs)
{
streambuf::swap(__rhs);
- _STD::swap(__strmode_, __rhs.__strmode_);
- _STD::swap(__alsize_, __rhs.__alsize_);
- _STD::swap(__palloc_, __rhs.__palloc_);
- _STD::swap(__pfree_, __rhs.__pfree_);
+ _VSTD::swap(__strmode_, __rhs.__strmode_);
+ _VSTD::swap(__alsize_, __rhs.__alsize_);
+ _VSTD::swap(__palloc_, __rhs.__palloc_);
+ _VSTD::swap(__pfree_, __rhs.__pfree_);
}
void
@@ -302,7 +302,7 @@ strstreambuf::seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmod
{
char* newpos = eback() + newoff;
if (pos_in)
- setg(eback(), newpos, _STD::max(newpos, egptr()));
+ setg(eback(), newpos, _VSTD::max(newpos, egptr()));
if (pos_out)
{
// min(pbase, newpos), newpos, epptr()
@@ -332,7 +332,7 @@ strstreambuf::seekpos(pos_type __sp, ios_base::openmode __which)
{
char* newpos = eback() + newoff;
if (pos_in)
- setg(eback(), newpos, _STD::max(newpos, egptr()));
+ setg(eback(), newpos, _VSTD::max(newpos, egptr()));
if (pos_out)
{
// min(pbase, newpos), newpos, epptr()
OpenPOWER on IntegriCloud