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/istream | |
| 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/istream')
| -rw-r--r-- | libcxx/include/istream | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/istream b/libcxx/include/istream index e3bdfb4ee07..90bf4b66b2a 100644 --- a/libcxx/include/istream +++ b/libcxx/include/istream @@ -1265,7 +1265,7 @@ basic_istream<_CharT, _Traits>::readsome(char_type* __s, streamsize __n) case 0: break; default: - __c = min(__c, __n); + __c = _STD::min(__c, __n); for (streamsize __k = 0; __k < __c; ++__k, ++__s, ++__i) *__s = *__i; } |

