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) {