Change --use-location-cache=false to --disbale-location-cache

This commit is contained in:
Patrick Niklaus
2017-10-19 10:47:00 +00:00
committed by Patrick Niklaus
parent 1610ea8dee
commit 27a9603b98
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -67,10 +67,10 @@ return_code parseArguments(int argc,
&extractor_config.location_dependent_data_paths)
->composing(),
"GeoJSON files with location-dependent data")(
"use-locations-cache",
"disable-locations-cache",
boost::program_options::bool_switch(&extractor_config.use_locations_cache)
->implicit_value(true)
->default_value(extractor_config.use_locations_cache),
->implicit_value(false)
->default_value(true),
"Use internal nodes locations cache for location-dependent data lookups");
bool dummy;