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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2015-04-21 10:43:55 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:47:17 +0300
commit30737b7bfeb67db966794028345abbe335e7cc79 (patch)
treee257a0db4d62ea41d453cb50259f89fcdcf22bcd /platform
parent861adb654c22419f2c96dad9e70f9f6f46aff725 (diff)
Fix after colleagues comments
Diffstat (limited to 'platform')
-rw-r--r--platform/location.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/platform/location.hpp b/platform/location.hpp
index 6a65949fdf..a93aada073 100644
--- a/platform/location.hpp
+++ b/platform/location.hpp
@@ -8,7 +8,6 @@
#include "std/string.hpp"
#include "std/vector.hpp"
-
namespace location
{
/// @note Do not change values of this constants.
@@ -110,9 +109,9 @@ namespace location
int m_time;
// m_lanes contains lane information on the edge before the turn.
// Template parameter int is used for passing the information to Android and iOS.
- vector<vector<int>> m_lanes;
+ vector<vector<int8_t>> m_lanes;
// The next street name
- string m_trgName;
+ string m_targetName;
bool IsValid() const { return !m_distToTarget.empty(); }
};