Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2016-04-04 15:22:20 +0300
committervng <viktor.govako@gmail.com>2016-04-05 18:37:17 +0300
commit3c425c4f8f7bcb9b745f34927e35621ee3ee87cf (patch)
treef3fd7957226079c3876d64ca1f788ca45f9a87bd /indexer/ftypes_matcher.hpp
parentb5e4d7124ce74ed2e4f97c5eba3ffde022a0f992 (diff)
Review fixes.
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index e767abbb4f..d93d06a50a 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -21,12 +21,12 @@ class BaseChecker
protected:
vector<uint32_t> m_types;
- virtual bool IsMatched(uint32_t type) const;
-
BaseChecker(size_t level = 2) : m_level(level) {}
virtual ~BaseChecker() = default;
public:
+ virtual bool IsMatched(uint32_t type) const;
+
bool operator() (feature::TypesHolder const & types) const;
bool operator() (FeatureType const & ft) const;
bool operator() (vector<uint32_t> const & types) const;