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:
authortatiana-kondakova <tatiana.kondakova@gmail.com>2018-01-29 16:36:12 +0300
committermpimenov <mpimenov@users.noreply.github.com>2018-01-30 13:30:27 +0300
commitff52dcc7a3197beb633ee7d7d1b574a34bf93156 (patch)
tree057706635aefce545e0e9046d166dd861e4071b0 /indexer/interval_index.hpp
parentf3edb952b972d51031371d1c45ce2e8c85e47535 (diff)
Remove GeoIndex 2011 format support
Diffstat (limited to 'indexer/interval_index.hpp')
-rw-r--r--indexer/interval_index.hpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/indexer/interval_index.hpp b/indexer/interval_index.hpp
index 1f6298a1a8..147740a85e 100644
--- a/indexer/interval_index.hpp
+++ b/indexer/interval_index.hpp
@@ -1,6 +1,4 @@
#pragma once
-#include "indexer/interval_index_iface.hpp"
-
#include "coding/endianness.hpp"
#include "coding/byte_stream.hpp"
#include "coding/reader.hpp"
@@ -9,8 +7,9 @@
#include "base/assert.hpp"
#include "base/buffer_vector.hpp"
+#include <cstdint>
-class IntervalIndexBase : public IntervalIndexIFace
+class IntervalIndexBase
{
public:
#pragma pack(push, 1)
@@ -71,11 +70,6 @@ public:
}
}
- virtual void DoForEach(FunctionT const & f, uint64_t beg, uint64_t end)
- {
- ForEach(f, beg, end);
- }
-
private:
template <typename F>