Ensure routed is backwards compatible

This commit is contained in:
Patrick Niklaus
2015-04-22 01:11:45 +02:00
parent c0e066440c
commit 8f3feac916
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -39,9 +39,9 @@ struct libosrm_config
{
}
libosrm_config(const ServerPaths &paths, const bool flag, const int max_table, const int max_matching)
libosrm_config(const ServerPaths &paths, const bool sharedmemory_flag, const int max_table, const int max_matching)
: server_paths(paths), max_locations_distance_table(max_table),
max_locations_map_matching(max_matching), use_shared_memory(flag)
max_locations_map_matching(max_matching), use_shared_memory(sharedmemory_flag)
{
}