diff -r 2c2e8df67ddc -r b9887ae63df0 test/fractional_matching_test.cc --- a/test/fractional_matching_test.cc Tue Aug 06 12:21:06 2013 +0200 +++ b/test/fractional_matching_test.cc Wed Aug 07 07:09:31 2013 +0200 @@ -342,7 +342,7 @@ check(indeg == 1, "Invalid matching"); pv += weight[mwfm.matching(n)]; SmartGraph::Node o = graph.target(mwfm.matching(n)); - ignore_unused_variable_warning(o); + ::lemon::ignore_unused_variable_warning(o); } else { check(mwfm.nodeValue(n) == 0, "Invalid matching"); check(indeg == 0, "Invalid matching"); @@ -407,7 +407,7 @@ check(indeg == 1, "Invalid perfect matching"); pv += weight[mwpfm.matching(n)]; SmartGraph::Node o = graph.target(mwpfm.matching(n)); - ignore_unused_variable_warning(o); + ::lemon::ignore_unused_variable_warning(o); } for (SmartGraph::EdgeIt e(graph); e != INVALID; ++e) {