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
67
67
}
68
68
69
69
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
71
71
{
72
72
utf32_access lhs_view (lhs);
73
73
utf32_access rhs_view (rhs);
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ namespace sysstr
320
320
321
321
friend auto compare (const sys_string_t & lhs, const sys_string_t & rhs) noexcept -> std::strong_ordering
322
322
{ 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
324
324
{ return sys_string_t::compare_no_case (lhs, rhs); }
325
325
326
326
template <addable<Storage> Addend1, addable<Storage> Addend2>
@@ -419,7 +419,7 @@ namespace sysstr
419
419
420
420
private:
421
421
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;
423
423
424
424
template <std::invocable<std::string_view> Func>
425
425
auto print_with (Func func) const -> decltype(func(std::string_view{}));
You can’t perform that action at this time.
0 commit comments