Skip to content

Commit 22060b7

Browse files
H-G-Hristovldionne
andauthored
Update libcxx/include/istream
Co-authored-by: Louis Dionne <[email protected]>
1 parent 846aea6 commit 22060b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/istream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public:
295295

296296
basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof());
297297
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) {
298+
_LIBCPP_HIDE_FROM_ABI basic_istream& ignore(streamsize __n, char_type __delim) {
299299
return ignore(__n, traits_type::to_int_type(__delim));
300300
}
301301
int_type peek();

0 commit comments

Comments
 (0)