From 26cfec82e5c55d997d0f132adf96e2dabca0b29d Mon Sep 17 00:00:00 2001 From: tatiana-kondakova Date: Wed, 6 Dec 2017 16:13:13 +0300 Subject: [PATCH] Fix linux build --- routing/routing_tests/astar_algorithm_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/routing_tests/astar_algorithm_test.cpp b/routing/routing_tests/astar_algorithm_test.cpp index b3012c98bc..01e797ec49 100644 --- a/routing/routing_tests/astar_algorithm_test.cpp +++ b/routing/routing_tests/astar_algorithm_test.cpp @@ -27,7 +27,7 @@ class UndirectedGraph { public: using Vertex = unsigned; - using Edge = Edge; + using Edge = routing_test::Edge; using Weight = double; void AddEdge(unsigned u, unsigned v, unsigned w)