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:
authorYuri Gorshenin <y@maps.me>2015-10-22 12:20:01 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:02:27 +0300
commit1bef3f5d8982e067ca33f51646880ce6f96b4388 (patch)
treeb30847cc00ab817d7dfcd7ece240fb1caa76a89a /indexer/rank_table.hpp
parent07185d0cc56b9f3e935c345288e5d1bff2ce61fb (diff)
[search] Switch from std::{vector|set} to CBV in retrieval.
Diffstat (limited to 'indexer/rank_table.hpp')
-rw-r--r--indexer/rank_table.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indexer/rank_table.hpp b/indexer/rank_table.hpp
index bea8a8da1d..756b477aaa 100644
--- a/indexer/rank_table.hpp
+++ b/indexer/rank_table.hpp
@@ -42,7 +42,8 @@ class RankTable
public:
enum Version
{
- V0 = 0
+ V0 = 0,
+ VERSION_COUNT
};
virtual ~RankTable() = default;