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
path: root/search
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2018-08-15 19:19:20 +0300
committermpimenov <mpimenov@users.noreply.github.com>2018-08-22 16:48:46 +0300
commit92824ab302b88fa6dbff89d49252c2cfe484b6ee (patch)
tree2bb6f1297ebcb2a3ee262998001c5a898700b54f /search
parent2b842cb5581a592bb2fc1d95ded460b52a26f2b6 (diff)
[editor] synchronization based on shared pointers. The editor is thread-safe for read operations now.
Diffstat (limited to 'search')
-rw-r--r--search/mwm_context.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/search/mwm_context.hpp b/search/mwm_context.hpp
index 69daedee52..64ecad854e 100644
--- a/search/mwm_context.hpp
+++ b/search/mwm_context.hpp
@@ -63,7 +63,7 @@ public:
{
FeatureType ft;
if (GetFeature(index, ft))
- fn(ft);
+ fn(ft);
});
}