We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22060b7 commit 6d9c59cCopy full SHA for 6d9c59c
libcxx/include/istream
@@ -70,7 +70,7 @@ public:
70
basic_istream& getline(char_type* s, streamsize n, char_type delim);
71
72
basic_istream& ignore(streamsize n = 1, int_type delim = traits_type::eof());
73
- basic_istream& ignore(streamsize n, char_type delim); // Since C++26
+ basic_istream& ignore(streamsize n, char_type delim); // Since C++26, implemented as a DR
74
int_type peek();
75
basic_istream& read (char_type* s, streamsize n);
76
streamsize readsome(char_type* s, streamsize n);
0 commit comments