diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp index c9e7fa6d87e..5747d917868 100644 --- a/indexer/ftypes_matcher.hpp +++ b/indexer/ftypes_matcher.hpp @@ -195,20 +195,20 @@ class WikiChecker : public BaseChecker { WikiChecker(); public: - static std::set> const kTypesForWiki; - - DECLARE_CHECKER_INSTANCE(WikiChecker); - - template - bool NeedFeature(Ft & feature) const - { - bool need = false; - feature.ForEachType([&](uint32_t type) { - if (!need && IsMatched(type)) - need = true; - }); - return need; - } + static std::set> const kTypesForWiki; + + DECLARE_CHECKER_INSTANCE(WikiChecker); + + template + bool NeedFeature(Ft & feature) const + { + bool need = false; + feature.ForEachType([&](uint32_t type) { + if (!need && IsMatched(type)) + need = true; + }); + return need; + } }; class IsPlaceChecker : public BaseChecker