test/dijkstra_test.cc
changeset 1173 d216e1c8b3fa
parent 956 141f9c0db4a3
parent 1171 7e368d9b67f7
child 1259 8b2d4e5d96e4
     1.1 --- a/test/dijkstra_test.cc	Thu Sep 13 12:02:27 2012 +0200
     1.2 +++ b/test/dijkstra_test.cc	Wed Nov 28 11:54:43 2012 +0100
     1.3 @@ -65,6 +65,8 @@
     1.4    VType l;
     1.5    int i;
     1.6    bool b;
     1.7 +  ignore_unused_variable_warning(l,i,b);
     1.8 +
     1.9    DType::DistMap d(G);
    1.10    DType::PredMap p(G);
    1.11    LengthMap length;
    1.12 @@ -162,6 +164,8 @@
    1.13  
    1.14    Digraph g;
    1.15    bool b;
    1.16 +  ignore_unused_variable_warning(b);
    1.17 +
    1.18    dijkstra(g,LengthMap()).run(Node());
    1.19    b=dijkstra(g,LengthMap()).run(Node(),Node());
    1.20    dijkstra(g,LengthMap())