diff options
author | faxe1008 <fabianblatz@gmail.com> | 2022-04-16 22:01:20 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-20 18:34:09 +0200 |
commit | b8bd66778213e27d350b28d830bc8c421944fc60 (patch) | |
tree | 5f4c0a171e06bca671d0a3165748de2e6722a84d /Userland/Applications/Assistant/Providers.cpp | |
parent | 1074c399f37be9c2e56215f7defaa1aa2eed125b (diff) | |
download | serenity-b8bd66778213e27d350b28d830bc8c421944fc60.zip |
AK: Add FuzzyMatch header
This patch adds a header containing the fuzzy match algorithm
previously used in Assistant. The algorithm was moved to AK
since there are many places where a search may benefit from fuzzyness.
Diffstat (limited to 'Userland/Applications/Assistant/Providers.cpp')
-rw-r--r-- | Userland/Applications/Assistant/Providers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Assistant/Providers.cpp b/Userland/Applications/Assistant/Providers.cpp index 0a24463638..e22789d618 100644 --- a/Userland/Applications/Assistant/Providers.cpp +++ b/Userland/Applications/Assistant/Providers.cpp @@ -5,7 +5,7 @@ */ #include "Providers.h" -#include "FuzzyMatch.h" +#include <AK/FuzzyMatch.h> #include <AK/LexicalPath.h> #include <AK/URL.h> #include <LibCore/DirIterator.h> |