Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Oct 2, 2024
1 parent 3163fa0 commit 5dc0127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions far/sqlitedb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ static int combined_comparer(void* const Param, int const Size1, const void* con

if (Context->Encoding == SQLITE_UTF16)
{
return string_sort::detail::ordering_as_int(Context->Comparer(
return string_sort::ordering_as_int(Context->Comparer(
view<wchar_t>(Data1, Size1),
view<wchar_t>(Data2, Size2)
));
Expand All @@ -645,7 +645,7 @@ static int combined_comparer(void* const Param, int const Size1, const void* con
encoding::utf8::get_chars(RawView1, Context->CollationCache.Buffer1);
encoding::utf8::get_chars(RawView2, Context->CollationCache.Buffer2);

return string_sort::detail::ordering_as_int(Context->Comparer(
return string_sort::ordering_as_int(Context->Comparer(
Context->CollationCache.Buffer1,
Context->CollationCache.Buffer2
));
Expand Down

0 comments on commit 5dc0127

Please sign in to comment.