Try to fix implicit operator=

This commit is contained in:
Jan Möbius
2022-01-17 15:32:09 +01:00
parent d40319dbd5
commit 71a5f40ea8

View File

@@ -452,6 +452,8 @@ struct FilteredSmartRangeT : public SmartRangeT<FilteredSmartRangeT<RangeT, Hand
operator++(); operator++();
} }
FilteredIterator(const FilteredIterator& other) = default;
FilteredIterator& operator=(const FilteredIterator& other) FilteredIterator& operator=(const FilteredIterator& other)
{ {
BaseIterator::operator=(other); BaseIterator::operator=(other);