Remove -m parameter from routed as it conflicts. Use the long names instead.

This commit is contained in:
Patrick Niklaus 2015-11-17 22:59:39 +01:00
parent 543e77b9be
commit 50512b52e1

View File

@ -184,10 +184,10 @@ inline unsigned GenerateServerProgramOptions(const int argc,
"shared-memory,s",
boost::program_options::value<bool>(&use_shared_memory)->implicit_value(true),
"Load data from shared memory")(
"max-table-size,m",
"max-table-size",
boost::program_options::value<int>(&max_locations_distance_table)->default_value(100),
"Max. locations supported in distance table query")(
"max-matching-size,m",
"max-matching-size",
boost::program_options::value<int>(&max_locations_map_matching)->default_value(2),
"Max. locations supported in map matching query");