LWG-3880: Clarify `operator+=` complexity for `{chunk,stride}_view::iterator` (#3554)

This commit is contained in:
Jakub Mazurkiewicz 2023-03-14 01:00:27 +01:00 коммит произвёл GitHub
Родитель 4907ba6fd2
Коммит 8eb3a06791
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -6682,7 +6682,6 @@ namespace ranges {
}
#endif // _ITERATOR_DEBUG_LEVEL != 0
// Per to-be-filed LWG issue (See GH-2995)
if constexpr (sized_sentinel_for<_Base_sentinel, _Base_iterator>) {
_Missing = _RANGES advance(_Current, _Count * _Off, _End);
} else {
@ -7642,7 +7641,6 @@ namespace ranges {
}
#endif // _ITERATOR_DEBUG_LEVEL != 0
// Per to-be-filed LWG issue (See GH-2995)
if constexpr (sized_sentinel_for<_Base_sentinel, _Base_iterator>) {
_Missing = _RANGES advance(_Current, _Stride * _Off, _End);
} else {