diff -r 8b2d4e5d96e4 -r a337a0dd3f75 test/fractional_matching_test.cc --- a/test/fractional_matching_test.cc Wed Aug 07 06:55:05 2013 +0200 +++ b/test/fractional_matching_test.cc Wed Aug 07 06:57:41 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) {