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>2016-07-04 16:24:47 +0300
committerYuri Gorshenin <y@maps.me>2016-07-05 12:40:47 +0300
commit7df300bc547e7fbb845ff3cedf95d27b61a7ad73 (patch)
treed058fe814917d70bf9cff3e95f4eb11bd6c15c4e /search/streets_matcher.hpp
parent36fe4a08508b790a16677465e2e0ed5db70f0414 (diff)
Minor fixes - get rid of redundant copying.
Diffstat (limited to 'search/streets_matcher.hpp')
-rw-r--r--search/streets_matcher.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/search/streets_matcher.hpp b/search/streets_matcher.hpp
index 43062db676..7918380774 100644
--- a/search/streets_matcher.hpp
+++ b/search/streets_matcher.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "search/cbv_ptr.hpp"
+#include "search/cbv.hpp"
#include "search/geocoder_context.hpp"
#include "std/vector.hpp"
@@ -17,7 +17,7 @@ public:
{
inline size_t GetNumTokens() const { return m_endToken - m_startToken; }
- CBVPtr m_features;
+ CBV m_features;
size_t m_startToken = 0;
size_t m_endToken = 0;