summaryrefslogtreecommitdiffstats
path: root/libcxx/include/sstream
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
commita0fe8c436e8286dca0deb390b75a683a86206e94 (patch)
treede9b863ff66252c3894e9a5c3743498d64cd5fbb /libcxx/include/sstream
parentac407594c26f037cd5cf5576536e4a2e3cbd10bc (diff)
downloadbcm5719-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/include/sstream')
-rw-r--r--libcxx/include/sstream2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/sstream b/libcxx/include/sstream
index ea4cfdef686..2a5fcc5521d 100644
--- a/libcxx/include/sstream
+++ b/libcxx/include/sstream
@@ -451,7 +451,7 @@ basic_stringbuf<_CharT, _Traits, _Allocator>::overflow(int_type __c)
}
#endif // _LIBCPP_NO_EXCEPTIONS
}
- __hm_ = max(this->pptr() + 1, __hm_);
+ __hm_ = _STD::max(this->pptr() + 1, __hm_);
if (__mode_ & ios_base::in)
{
char_type* __p = const_cast<char_type*>(__str_.data());
OpenPOWER on IntegriCloud