@@ -652,11 +652,11 @@ namespace tiny_utf8
652
652
template <typename Container, bool Raw>
653
653
static inline bool operator >=( const const_reverse_iterator<Container, true >& lhs , const const_reverse_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_raw_index () <= rhs.get_raw_index (); }
654
654
template <typename Container, bool Raw>
655
- static inline bool operator <( const const_iterator<Container, true >& lhs , const const_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_index () < rhs.get_raw_index (); }
655
+ static inline bool operator <( const const_iterator<Container, true >& lhs , const const_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_raw_index () < rhs.get_raw_index (); }
656
656
template <typename Container, bool Raw>
657
657
static inline bool operator <( const const_reverse_iterator<Container, true >& lhs , const const_reverse_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_raw_index () > rhs.get_raw_index (); }
658
658
template <typename Container, bool Raw>
659
- static inline bool operator <=( const const_iterator<Container, true >& lhs , const const_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_index () <= rhs.get_raw_index (); }
659
+ static inline bool operator <=( const const_iterator<Container, true >& lhs , const const_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_raw_index () <= rhs.get_raw_index (); }
660
660
template <typename Container, bool Raw>
661
661
static inline bool operator <=( const const_reverse_iterator<Container, true >& lhs , const const_reverse_iterator<Container, Raw>& rhs ) noexcept { return lhs.get_raw_index () >= rhs.get_raw_index (); }
662
662
0 commit comments