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 846aea6 commit 22060b7Copy full SHA for 22060b7
libcxx/include/istream
@@ -295,7 +295,7 @@ public:
295
296
basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof());
297
template <class _Tp = char_type, __enable_if_t<is_same<_Tp, char>::value, int> = 0>
298
- inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_istream& ignore(streamsize __n, char_type __delim) {
+ _LIBCPP_HIDE_FROM_ABI basic_istream& ignore(streamsize __n, char_type __delim) {
299
return ignore(__n, traits_type::to_int_type(__delim));
300
}
301
int_type peek();
0 commit comments