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 'routing/routing_session.hpp')
-rw-r--r--routing/routing_session.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/routing/routing_session.hpp b/routing/routing_session.hpp
index cfa179e91a..cdedf6e146 100644
--- a/routing/routing_session.hpp
+++ b/routing/routing_session.hpp
@@ -20,7 +20,6 @@
#include "base/mutex.hpp"
-#include "std/atomic.hpp"
#include "std/functional.hpp"
#include "std/limits.hpp"
#include "std/map.hpp"
@@ -215,8 +214,8 @@ private:
private:
unique_ptr<AsyncRouter> m_router;
shared_ptr<Route> m_route;
- atomic<State> m_state;
- atomic<bool> m_isFollowing;
+ State m_state;
+ bool m_isFollowing;
Checkpoints m_checkpoints;
size_t m_lastWarnedSpeedCameraIndex;
SpeedCameraRestriction m_lastFoundCamera;
@@ -228,7 +227,7 @@ private:
/// about camera will be sent at most once.
mutable bool m_speedWarningSignal;
- /// |m_routingSessionMutex| should be used for access to |m_route| member.
+ /// |m_routingSessionMutex| should be used for access to all members of RoutingSession class.
mutable threads::Mutex m_routingSessionMutex;
/// Current position metrics to check for RouteNeedRebuild state.