Restore storage constructors with one arguments

This commit is contained in:
Michael Krasnyk
2018-04-09 12:45:53 +02:00
committed by Patrick Niklaus
parent bf2b45120a
commit c4bf450fc6
3 changed files with 10 additions and 18 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ template <> struct SearchEngineData<routing_algorithms::offline::Algorithm>
}
else
{
forward_heap_1.reset(new QueryHeap(number_of_nodes));
forward_heap_1.reset(new QueryHeap(number_of_nodes, 0));
}
if (reverse_heap_1.get())
@@ -49,7 +49,7 @@ template <> struct SearchEngineData<routing_algorithms::offline::Algorithm>
}
else
{
reverse_heap_1.reset(new QueryHeap(number_of_nodes));
reverse_heap_1.reset(new QueryHeap(number_of_nodes, 0));
}
}
};