Skip to content

Commit

Permalink
Fix typo (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
lackhole authored Oct 17, 2024
1 parent 7224079 commit 8a21993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/preview/__ranges/views/transform_view.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class transform_view : public view_interface<transform_view<V, F>> {
>::value, int> = 0>
constexpr iterator(iterator<AntiConst> i)
: current_(std::move(i.current_))
, parent_(i.praent_) {}
, parent_(i.parent_) {}

constexpr const iterator_t<Base>& base() const & noexcept { return current_; }
constexpr iterator_t<Base> base() && { return std::move(current_); }
Expand Down

0 comments on commit 8a21993

Please sign in to comment.