Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stl/inc/iterator
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ public:
#endif // TRANSITION, VSO-1225825

_Variantish(const _Variantish& _That) noexcept(
noexcept(is_nothrow_copy_constructible_v<_It>&& is_nothrow_copy_constructible_v<_Se>))
is_nothrow_copy_constructible_v<_It>&& is_nothrow_copy_constructible_v<_Se>)
: _Contains{_That._Contains} {
switch (_Contains) {
case _Variantish_state::_Holds_iter:
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/ranges
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ namespace ranges {
_Iterator() = default;

constexpr _Iterator(_Parent_t& _Parent_, iterator_t<_Base> _Current_) noexcept(
noexcept(is_nothrow_move_constructible_v<iterator_t<_Base>>)) // strengthened
is_nothrow_move_constructible_v<iterator_t<_Base>>) // strengthened
: _Current{_STD move(_Current_)}, _Parent{_STD addressof(_Parent_)} {
#if _ITERATOR_DEBUG_LEVEL != 0
_Adl_verify_range(_Current, _RANGES end(_Parent_._Range));
Expand Down