-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
… parsing by default
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,7 @@ struct ExtractorConfig final : storage::IOConfig | |
".osrm.cnbg", | ||
".osrm.cnbg_to_ebg"}), | ||
requested_num_threads(0), | ||
parse_conditionals(false), | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
karenzshea
Author
Contributor
|
||
use_locations_cache(true) | ||
{ | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,11 +55,11 @@ struct UpdaterConfig final : storage::IOConfig | |
".osrm.edges", | ||
".osrm.geometry", | ||
".osrm.fileIndex", | ||
".osrm.properties", | ||
".osrm.restrictions", | ||
".osrm.properties" | ||
}, | ||
{}, | ||
{".osrm.datasource_names"}) | ||
{".osrm.restrictions"}, | ||
{".osrm.datasource_names"}), | ||
This comment has been minimized.
Sorry, something went wrong. |
||
valid_now(0) | ||
This comment has been minimized.
Sorry, something went wrong.
mloskot
Member
|
||
{ | ||
} | ||
|
||
|
This is just a tidy up.