diff options
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; } |

