libstdc++: Add missing noexcept to lazy_split_view iterator (LWG 3593)

This was approved at the October 2021 plenary. We already have noexcept
in the other places the issue adds it in the spec.

libstdc++-v3/ChangeLog:

	* include/std/ranges (ranges::lazy_split_view::_InnerIter::end()):
	Add neoxcept (LWG 3593).
This commit is contained in:
Jonathan Wakely 2022-01-11 14:22:47 +00:00
parent d2dc5305d8
commit 46de918f98
1 changed files with 1 additions and 1 deletions

View File

@ -3066,7 +3066,7 @@ namespace views::__adaptor
{ return _InnerIter<_Const>{_M_i}; }
constexpr default_sentinel_t
end() const
end() const noexcept
{ return default_sentinel; }
};