diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-02-14 19:12:38 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-02-14 19:12:38 +0000 |
commit | a0fe8c436e8286dca0deb390b75a683a86206e94 (patch) | |
tree | de9b863ff66252c3894e9a5c3743498d64cd5fbb /libcxx/src/strstream.cpp | |
parent | ac407594c26f037cd5cf5576536e4a2e3cbd10bc (diff) | |
download | bcm5719-llvm-a0fe8c436e8286dca0deb390b75a683a86206e94.tar.gz bcm5719-llvm-a0fe8c436e8286dca0deb390b75a683a86206e94.zip |
Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris).
llvm-svn: 125510
Diffstat (limited to 'libcxx/src/strstream.cpp')
-rw-r--r-- | libcxx/src/strstream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/strstream.cpp b/libcxx/src/strstream.cpp index d0a0ab027bd..ef12f982fe7 100644 --- a/libcxx/src/strstream.cpp +++ b/libcxx/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() |