File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ namespace sysstr
6767 }
6868
6969 template <class Storage >
70- auto sys_string_t <Storage>::compare_no_case(const sys_string_t <Storage> lhs, const sys_string_t <Storage> & rhs) noexcept -> std::strong_ordering
70+ auto sys_string_t <Storage>::compare_no_case(const sys_string_t <Storage> & lhs, const sys_string_t <Storage> & rhs) noexcept -> std::strong_ordering
7171 {
7272 utf32_access lhs_view (lhs);
7373 utf32_access rhs_view (rhs);
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ namespace sysstr
320320
321321 friend auto compare (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering
322322 { return sys_string_t::compare (lhs, rhs); }
323- friend auto compare_no_case (const sys_string_t lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering
323+ friend auto compare_no_case (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering
324324 { return sys_string_t::compare_no_case (lhs, rhs); }
325325
326326 template <addable<Storage> Addend1, addable<Storage> Addend2>
@@ -419,7 +419,7 @@ namespace sysstr
419419
420420 private:
421421 static auto compare (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering;
422- static auto compare_no_case (const sys_string_t lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering;
422+ static auto compare_no_case (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering;
423423
424424 template <std::invocable<std::string_view> Func>
425425 auto print_with (Func func) const -> decltype(func(std::string_view{}));
You can’t perform that action at this time.
0 commit comments