diff -r 00f8d9f9920d -r d216e1c8b3fa test/dijkstra_test.cc --- a/test/dijkstra_test.cc Thu Sep 13 12:02:27 2012 +0200 +++ b/test/dijkstra_test.cc Wed Nov 28 11:54:43 2012 +0100 @@ -65,6 +65,8 @@ VType l; int i; bool b; + ignore_unused_variable_warning(l,i,b); + DType::DistMap d(G); DType::PredMap p(G); LengthMap length; @@ -162,6 +164,8 @@ Digraph g; bool b; + ignore_unused_variable_warning(b); + dijkstra(g,LengthMap()).run(Node()); b=dijkstra(g,LengthMap()).run(Node(),Node()); dijkstra(g,LengthMap())