adjust cell_storage tests to new StaticGraph interface

This commit is contained in:
Michael Krasnyk
2017-02-21 16:20:03 +01:00
committed by Patrick Niklaus
parent ed7438b9ba
commit 1541d32a42
3 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ template <typename EdgeDataT> struct SortableEdgeWithData : SortableEdgeWithData
template <typename... Ts>
SortableEdgeWithData(NodeIterator source, NodeIterator target, Ts &&... data)
: Base{source, target}, data(std::forward<Ts>(data)...)
: Base{source, target}, data{std::forward<Ts>(data)...}
{
}
};