Skip to content

Commit 4cb58c0

Browse files
authored
Update libcxx/include/istream
1 parent 341fe85 commit 4cb58c0

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

295295
basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof());
296296
# if _LIBCPP_STD_VER >= 26
297-
basic_istream& ignore(streamsize __n, char_type __delim)
297+
inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_istream& ignore(streamsize __n, char_type __delim)
298298
requires is_same_v<char_type, char>
299299
{
300300
return this->ignore(__n, _Traits::to_int_type(__delim));

0 commit comments

Comments
 (0)