File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
keyvi/include/keyvi/dictionary/completion Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2727
2828#include < algorithm>
2929#include < cstddef>
30+ #include < cstdint>
3031#include < memory>
3132#include < string>
3233#include < utility>
@@ -129,6 +130,7 @@ class PrefixCompletion final {
129130 return MatchIterator::EmptyIteratorPair ();
130131 }
131132
133+ // NOLINTBEGIN(readability-function-cognitive-complexity)
132134 [[nodiscard]] MatchIterator::MatchIteratorPair GetFuzzyCompletions (const std::string& query,
133135 const int32_t max_edit_distance,
134136 const size_t minimum_exact_prefix = 2 ) const {
@@ -224,6 +226,7 @@ class PrefixCompletion final {
224226
225227 return MatchIterator::MakeIteratorPair (tfunc, std::move (first_match));
226228 }
229+ // NOLINTEND(readability-function-cognitive-complexity)
227230
228231 private:
229232 fsa::automata_t fsa_;
You can’t perform that action at this time.
0 commit comments