Skip to content

Commit b9b6b2d

Browse files
committed
Cleanup
1 parent 7c6aac2 commit b9b6b2d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

libcxx/include/istream

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,6 @@ public:
295295

296296
basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof());
297297
# if _LIBCPP_STD_VER >= 26
298-
// _LIBCPP_HIDE_FROM_ABI basic_istream& ignore(streamsize __n, char_type __delim)
299-
// requires is_same_v<char_type, char>;
300298
_LIBCPP_HIDE_FROM_ABI basic_istream& ignore(streamsize __n, char_type __delim)
301299
requires is_same_v<char_type, char>
302300
{
@@ -877,14 +875,6 @@ basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>::ignore(streamsiz
877875
return *this;
878876
}
879877

880-
// # if _LIBCPP_STD_VER >= 26
881-
// template <class _CharT, class _Traits>
882-
// basic_istream& basic_istream<_CharT, _Traits>&
883-
// basic_istream<_CharT, _Traits>::ignore(streamsize __n, char_type __delim) {
884-
// return this->ignore(__n, _Traits::to_int_type(__delim));
885-
// }
886-
// # endif
887-
888878
template <class _CharT, class _Traits>
889879
typename basic_istream<_CharT, _Traits>::int_type basic_istream<_CharT, _Traits>::peek() {
890880
ios_base::iostate __state = ios_base::goodbit;

0 commit comments

Comments
 (0)