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 180a3957658..04845a24341 100644 --- a/libcxx/include/istream +++ b/libcxx/include/istream @@ -1647,7 +1647,7 @@ operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Size>& __x) { basic_string<_CharT, _Traits> __str; const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__is.getloc()); - streamsize __c = 0; + size_t __c = 0; ios_base::iostate __err = ios_base::goodbit; _CharT __zero = __ct.widen('0'); _CharT __one = __ct.widen('1'); |

