summaryrefslogtreecommitdiff
path: root/src/strstream.cpp
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-02-14 19:12:38 +0000
committerHoward Hinnant <hhinnant@apple.com>2011-02-14 19:12:38 +0000
commit6cf5d8c3aaab7aeaedac2a89085790b9f92d1a4c (patch)
tree79e19aef724979610fcb85d827c620ce7649233d /src/strstream.cpp
parentc4cbb5b6b7626e4a8b74e0f61a4c5a88591f36a0 (diff)
downloadlibcxx-6cf5d8c3aaab7aeaedac2a89085790b9f92d1a4c.tar.gz
Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris).
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@125510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'src/strstream.cpp')
-rw-r--r--src/strstream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strstream.cpp b/src/strstream.cpp
index d0a0ab027..ef12f982f 100644
--- a/src/strstream.cpp
+++ b/src/strstream.cpp
@@ -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, max(newpos, egptr()));
+ setg(eback(), newpos, _STD::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, max(newpos, egptr()));
+ setg(eback(), newpos, _STD::max(newpos, egptr()));
if (pos_out)
{
// min(pbase, newpos), newpos, epptr()