fix(ranges): fix TRangeView to be able to hold output iterator

This commit is contained in:
Redstone1024 2025-01-03 01:07:15 +08:00
parent fc87332845
commit 319d1cc8cb

View File

@ -112,8 +112,6 @@ class TRangeView : public IBasicViewInterface<TRangeView<I, S>>
{
public:
using FElementType = TIteratorElement<I>;
FORCEINLINE constexpr TRangeView() requires (CDefaultConstructible<I>) = default;
FORCEINLINE constexpr TRangeView(I InFirst, S InLast) : First(MoveTemp(InFirst)), Last(InLast) { }