Skip to content

Commit b436631

Browse files
committed
Cleanup
1 parent 40652b3 commit b436631

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
@@ -294,8 +294,6 @@ public:
294294

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

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

0 commit comments

Comments
 (0)