forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
b7bd733b67
commit
c1d38ca245
3 changed files with 5 additions and 10 deletions
|
@ -360,10 +360,7 @@ int main(int argc, char ** argv)
|
|||
}
|
||||
|
||||
if (FLAGS_make_transit_cross_mwm)
|
||||
{
|
||||
routing::BuildTransitCrossMwmSection(path, datFile, country, *countryParentGetter,
|
||||
FLAGS_disable_cross_mwm_progress);
|
||||
}
|
||||
routing::BuildTransitCrossMwmSection(path, datFile, country, *countryParentGetter);
|
||||
}
|
||||
|
||||
if (!FLAGS_ugc_data.empty())
|
||||
|
|
|
@ -322,8 +322,8 @@ void CalcCrossMwmConnectors(
|
|||
{
|
||||
auto const vehicleType = static_cast<VehicleType>(i);
|
||||
auto const & connector = connectors[i];
|
||||
LOG(LINFO, (vehicleType, "model: enters:", connector.GetEnters().size(), ", exits:",
|
||||
connector.GetExits().size()));
|
||||
LOG(LINFO, (vehicleType, "model. Number of enters:", connector.GetEnters().size(),
|
||||
"Number of exits:", connector.GetExits().size()));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -473,8 +473,7 @@ void BuildRoutingCrossMwmSection(string const & path, string const & mwmFile,
|
|||
|
||||
void BuildTransitCrossMwmSection(string const & path, string const & mwmFile,
|
||||
string const & country,
|
||||
CountryParentNameGetterFn const & countryParentNameGetterFn,
|
||||
bool disableCrossMwmProgress)
|
||||
CountryParentNameGetterFn const & countryParentNameGetterFn)
|
||||
{
|
||||
LOG(LINFO, ("Building transit cross mwm section for", country));
|
||||
using CrossMwmId = connector::TransitId;
|
||||
|
|
|
@ -17,6 +17,5 @@ void BuildRoutingCrossMwmSection(std::string const & path, std::string const & m
|
|||
bool disableCrossMwmProgress);
|
||||
void BuildTransitCrossMwmSection(std::string const & path, std::string const & mwmFile,
|
||||
std::string const & country,
|
||||
CountryParentNameGetterFn const & countryParentNameGetterFn,
|
||||
bool disableCrossMwmProgress);
|
||||
CountryParentNameGetterFn const & countryParentNameGetterFn);
|
||||
} // namespace routing
|
||||
|
|
Loading…
Add table
Reference in a new issue