Skip to content

Commit

Permalink
iterator: Remove ineffective const in base() return type
Browse files Browse the repository at this point in the history
  • Loading branch information
amyspark committed Aug 20, 2023
1 parent 67a2e5e commit 88c09c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substrate/iterator
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ namespace substrate
return *this;
}

const iterator_t base() const noexcept { return current; }
iterator_t base() const noexcept { return current; }
};

template<typename iteratorL_t, typename iteratorR_t, typename container_t> inline bool operator ==(
Expand Down

0 comments on commit 88c09c1

Please sign in to comment.