Remove -m parameter from routed as it conflicts. Use the long names instead.
This commit is contained in:
parent
543e77b9be
commit
50512b52e1
@ -184,10 +184,10 @@ inline unsigned GenerateServerProgramOptions(const int argc,
|
|||||||
"shared-memory,s",
|
"shared-memory,s",
|
||||||
boost::program_options::value<bool>(&use_shared_memory)->implicit_value(true),
|
boost::program_options::value<bool>(&use_shared_memory)->implicit_value(true),
|
||||||
"Load data from shared memory")(
|
"Load data from shared memory")(
|
||||||
"max-table-size,m",
|
"max-table-size",
|
||||||
boost::program_options::value<int>(&max_locations_distance_table)->default_value(100),
|
boost::program_options::value<int>(&max_locations_distance_table)->default_value(100),
|
||||||
"Max. locations supported in distance table query")(
|
"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),
|
boost::program_options::value<int>(&max_locations_map_matching)->default_value(2),
|
||||||
"Max. locations supported in map matching query");
|
"Max. locations supported in map matching query");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user