File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ struct utf8_iterator {
3838 friend auto operator ==(self_type, self_type) noexcept -> bool ;
3939 auto operator *() noexcept -> reference;
4040
41- friend constexpr auto operator ==(self_type, const char8_t * ptr ) noexcept {
42- return *ptr == char8_t {0 };
41+ friend constexpr auto operator ==(self_type, const char8_t * other_ptr ) noexcept {
42+ return *other_ptr == char8_t {0 };
4343 }
4444 };
4545
Original file line number Diff line number Diff line change @@ -3062,8 +3062,8 @@ struct utf8_iterator {
30623062 friend auto operator==(self_type, self_type) noexcept -> bool;
30633063 auto operator*() noexcept -> reference;
30643064
3065- friend constexpr auto operator==(self_type, const char8_t * ptr ) noexcept {
3066- return *ptr == char8_t{0};
3065+ friend constexpr auto operator==(self_type, const char8_t * other_ptr ) noexcept {
3066+ return *other_ptr == char8_t{0};
30673067 }
30683068 };
30693069
Original file line number Diff line number Diff line change @@ -3059,8 +3059,8 @@ struct utf8_iterator {
30593059 friend auto operator ==(self_type, self_type) noexcept -> bool ;
30603060 auto operator *() noexcept -> reference;
30613061
3062- friend constexpr auto operator ==(self_type, const char8_t * ptr ) noexcept {
3063- return *ptr == char8_t {0 };
3062+ friend constexpr auto operator ==(self_type, const char8_t * other_ptr ) noexcept {
3063+ return *other_ptr == char8_t {0 };
30643064 }
30653065 };
30663066
You can’t perform that action at this time.
0 commit comments