Assistant: Make strings const referenced

Found by clazy.
This commit is contained in:
Karol Kosek 2021-10-14 15:35:38 +02:00 committed by Andreas Kling
commit 5ddd1555bc
Notes: sideshowbarker 2024-07-18 01:54:01 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ static FuzzyMatchResult fuzzy_match_recursive(String const& needle, String const
return { false, out_score };
}
FuzzyMatchResult fuzzy_match(String needle, String haystack)
FuzzyMatchResult fuzzy_match(String const& needle, String const& haystack)
{
int recursion_count = 0;
u8 matches[MAX_MATCHES] {};