test/dijkstra_test.cc
changeset 983 8b2d4e5d96e4
parent 970 d216e1c8b3fa
parent 982 3e711ee55d31
     1.1 --- a/test/dijkstra_test.cc	Wed Nov 28 11:58:00 2012 +0100
     1.2 +++ b/test/dijkstra_test.cc	Wed Aug 07 06:55:05 2013 +0200
     1.3 @@ -65,7 +65,7 @@
     1.4    VType l;
     1.5    int i;
     1.6    bool b;
     1.7 -  ignore_unused_variable_warning(l,i,b);
     1.8 +  ::lemon::ignore_unused_variable_warning(l,i,b);
     1.9  
    1.10    DType::DistMap d(G);
    1.11    DType::PredMap p(G);
    1.12 @@ -164,7 +164,7 @@
    1.13  
    1.14    Digraph g;
    1.15    bool b;
    1.16 -  ignore_unused_variable_warning(b);
    1.17 +  ::lemon::ignore_unused_variable_warning(b);
    1.18  
    1.19    dijkstra(g,LengthMap()).run(Node());
    1.20    b=dijkstra(g,LengthMap()).run(Node(),Node());