remove explicit keyword from WayIDStartAndEndEdge ctor

This commit is contained in:
Dennis Luxen 2014-08-26 17:12:48 +02:00
parent 2f6f883f7f
commit c4e785e523

View File

@ -58,7 +58,7 @@ struct WayIDStartAndEndEdge
{
}
explicit WayIDStartAndEndEdge(unsigned w, NodeID fs, NodeID ft, NodeID ls, NodeID lt)
WayIDStartAndEndEdge(unsigned w, NodeID fs, NodeID ft, NodeID ls, NodeID lt)
: wayID(w), firstStart(fs), firstTarget(ft), lastStart(ls), lastTarget(lt)
{
}