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/include/__std_stream | |
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/include/__std_stream')
-rw-r--r-- | libcxx/include/__std_stream | 2 |
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_); |