Routing no map error code fix.

This commit is contained in:
Lev Dragunov 2015-12-29 13:27:02 +03:00
parent a6d040b95b
commit 75f8f23cad

View file

@ -25,7 +25,7 @@ struct RoutingMapping
/// Default constructor to create invalid instance for existing client code.
/// @postcondition IsValid() == false.
RoutingMapping() : m_pIndex(nullptr) {}
RoutingMapping() : m_pIndex(nullptr), m_error(IRouter::ResultCode::RouteFileNotExist) {}
/// @param countryFile Country file name without extension.
RoutingMapping(string const & countryFile, MwmSet & index);
~RoutingMapping();