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
64
64
}
65
65
66
66
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
68
68
{
69
69
utf32_view lhs_view (lhs);
70
70
utf32_view rhs_view (rhs);
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ namespace sysstr
234
234
235
235
friend auto compare (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> compare_result
236
236
{ 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
238
238
{ return sys_string_t::compare_no_case (lhs, rhs); }
239
239
240
240
template <class StringOrChar1 , class StringOrChar2 >
@@ -313,7 +313,7 @@ namespace sysstr
313
313
314
314
private:
315
315
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;
317
317
318
318
};
319
319
You can’t perform that action at this time.
0 commit comments