test/fractional_matching_test.cc
branch1.2
changeset 1263 b9887ae63df0
parent 1160 00f8d9f9920d
child 1270 dceba191c00d
     1.1 --- a/test/fractional_matching_test.cc	Tue Aug 06 12:21:06 2013 +0200
     1.2 +++ b/test/fractional_matching_test.cc	Wed Aug 07 07:09:31 2013 +0200
     1.3 @@ -342,7 +342,7 @@
     1.4        check(indeg == 1, "Invalid matching");
     1.5        pv += weight[mwfm.matching(n)];
     1.6        SmartGraph::Node o = graph.target(mwfm.matching(n));
     1.7 -      ignore_unused_variable_warning(o);
     1.8 +      ::lemon::ignore_unused_variable_warning(o);
     1.9      } else {
    1.10        check(mwfm.nodeValue(n) == 0, "Invalid matching");
    1.11        check(indeg == 0, "Invalid matching");
    1.12 @@ -407,7 +407,7 @@
    1.13      check(indeg == 1, "Invalid perfect matching");
    1.14      pv += weight[mwpfm.matching(n)];
    1.15      SmartGraph::Node o = graph.target(mwpfm.matching(n));
    1.16 -    ignore_unused_variable_warning(o);
    1.17 +    ::lemon::ignore_unused_variable_warning(o);
    1.18    }
    1.19  
    1.20    for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {