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:
authorExMix <rahuba.youri@mapswithme.com>2014-09-10 13:54:07 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:26:31 +0300
commit85f33490faba74e497c3d18ad28bd4783d2ada19 (patch)
treeeba6d5d77332235b744a317fdbfe3513935843f5 /map/location_state.hpp
parentf8e190f71cbb8faa1e2603f436aa76faa7f61593 (diff)
[android] adaptation for new location state mode
Diffstat (limited to 'map/location_state.hpp')
-rw-r--r--map/location_state.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/map/location_state.hpp b/map/location_state.hpp
index e953349345..1653cfdd9b 100644
--- a/map/location_state.hpp
+++ b/map/location_state.hpp
@@ -114,10 +114,10 @@ namespace location
private:
// Mode bits
// {
- constexpr static uint16_t const ModeNotProcessed = 0x40;
- constexpr static uint16_t const KnownDirectionBit = 0x80;
+ static uint16_t const ModeNotProcessed = 0x40;
+ static uint16_t const KnownDirectionBit = 0x80;
// }
- constexpr static float const s_cacheRadius = 500.0f;
+ static uint16_t const s_cacheRadius = 500.0f;
uint16_t m_modeInfo; // combination of Mode enum and "Mode bits"
uint16_t m_dragModeInfo;