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-05-19 13:44:57 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:13 +0300
commit911e9cb9b8ec6d0377f986cea7a64a23bb955808 (patch)
treebb2e42f17c16fc8154153588edc7098f2d91498d /indexer/ftypes_matcher.hpp
parent98e3583350706289a3fe3fd62ad695382b7bc963 (diff)
The turn functionality is moved to the turn_generator unit.
Diffstat (limited to 'indexer/ftypes_matcher.hpp')
-rw-r--r--indexer/ftypes_matcher.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp
index ac3a918a47..89e8f09a0f 100644
--- a/indexer/ftypes_matcher.hpp
+++ b/indexer/ftypes_matcher.hpp
@@ -141,7 +141,8 @@ bool IsTypeConformed(uint32_t type, vector<string> const & path);
// The enum values follow from the biggest roads (Trunk) to the smallest ones (Service).
enum class HighwayClass
{
- None = 0,
+ Undefined = 0, // There has not been any attempt of calculating HighwayClass.
+ None, // There was an attempt of calculating HighwayClass but it was not successful.
Trunk,
Primary,
Secondary,