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:
authorYury Melnichek <melnichek@malinovka.local>2011-08-26 01:10:15 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:22:32 +0300
commit31f2a764cd99e2e184233b017218bb4064d28751 (patch)
tree2a54feb81c09cae28f16e79b75c6fc2731e7521a /indexer/interval_index_iface.hpp
parent940c975a933069485234682335bfcb18ecad8508 (diff)
Fix bug when some feature were omitted from ForEachInRect. Remove Query class, since it's not used anywhere.
Diffstat (limited to 'indexer/interval_index_iface.hpp')
-rw-r--r--indexer/interval_index_iface.hpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/indexer/interval_index_iface.hpp b/indexer/interval_index_iface.hpp
index 879ee59eb9..7d2ce81c8e 100644
--- a/indexer/interval_index_iface.hpp
+++ b/indexer/interval_index_iface.hpp
@@ -7,13 +7,7 @@ class IntervalIndexIFace
public:
virtual ~IntervalIndexIFace() {}
- class QueryIFace
- {
- public:
- virtual ~QueryIFace() {}
- };
-
typedef function<void (uint32_t)> FunctionT;
- virtual void DoForEach(FunctionT const & f, uint64_t beg, uint64_t end, QueryIFace & query) = 0;
+ virtual void DoForEach(FunctionT const & f, uint64_t beg, uint64_t end) = 0;
};