We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentcb2254f commitcf357b0Copy full SHA for cf357b0
libcxx/include/istream
@@ -294,8 +294,6 @@ public:
294
basic_istream&getline(char_type* __s, streamsize __n, char_type __dlm);
295
296
basic_istream&ignore(streamsize __n =1, int_type __dlm = traits_type::eof());
297
-// template <class _Tp = char_type,
298
-// class = typename enable_if<is_same<_Tp, char_type>::value>::type>
299
template<class_Tp = char_type,__enable_if_t<is_same<_Tp, char_type>::value,int> =0>
300
inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_istream&ignore(streamsize __n, char_type __delim) {
301
returnignore(__n,traits_type::to_int_type(__delim));