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 @@ -64,7 +64,7 @@ namespace sysstr
6464 }
6565
6666 template <class Storage >
67- auto sys_string_t <Storage>::compare_no_case(const sys_string_t <Storage> lhs, const sys_string_t <Storage> & rhs) noexcept -> compare_result
67+ auto sys_string_t <Storage>::compare_no_case(const sys_string_t <Storage> & lhs, const sys_string_t <Storage> & rhs) noexcept -> compare_result
6868 {
6969 utf32_view lhs_view (lhs);
7070 utf32_view rhs_view (rhs);
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ namespace sysstr
234234
235235 friend auto compare (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> compare_result
236236 { return sys_string_t::compare (lhs, rhs); }
237- friend auto compare_no_case (const sys_string_t lhs, const sys_string_t & rhs) noexcept -> compare_result
237+ friend auto compare_no_case (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> compare_result
238238 { return sys_string_t::compare_no_case (lhs, rhs); }
239239
240240 template <class StringOrChar1 , class StringOrChar2 >
@@ -313,7 +313,7 @@ namespace sysstr
313313
314314 private:
315315 static auto compare (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> compare_result;
316- static auto compare_no_case (const sys_string_t lhs, const sys_string_t & rhs) noexcept -> compare_result;
316+ static auto compare_no_case (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> compare_result;
317317
318318 };
319319
You can’t perform that action at this time.
0 commit comments