summaryrefslogtreecommitdiffstats
path: root/libcxx/include/__std_stream
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/__std_stream
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/__std_stream')
-rw-r--r--libcxx/include/__std_stream2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__std_stream b/libcxx/include/__std_stream
index f6b3fd2f029..7dfb0c99bf1 100644
--- a/libcxx/include/__std_stream
+++ b/libcxx/include/__std_stream
@@ -97,7 +97,7 @@ typename __stdinbuf<_CharT>::int_type
__stdinbuf<_CharT>::__getchar(bool __consume)
{
char __extbuf[__limit];
- int __nread = max(1, __encoding_);
+ int __nread = _STD::max(1, __encoding_);
for (int __i = 0; __i < __nread; ++__i)
{
char __c = getc(__file_);
OpenPOWER on IntegriCloud