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:
Diffstat (limited to 'drape/index_storage.hpp')
-rw-r--r--drape/index_storage.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/drape/index_storage.hpp b/drape/index_storage.hpp
index 6ae9d8c3a7..79225b5a74 100644
--- a/drape/index_storage.hpp
+++ b/drape/index_storage.hpp
@@ -8,7 +8,7 @@ namespace dp
class IndexStorage
{
public:
- IndexStorage() = default;
+ IndexStorage();
IndexStorage(vector<uint32_t> && initial);
uint32_t Size() const;
@@ -21,8 +21,10 @@ public:
static uint32_t SizeOfIndex();
private:
- vector<uint16_t> m_storage16bit;
- vector<uint32_t> m_storage32bit;
+ vector<uint32_t> m_storage;
+ uint32_t m_size;
+
+ uint32_t GetStorageSize(uint32_t elementsCount) const;
};