diff -r a26b90a17c81 -r 8b2d4e5d96e4 test/bfs_test.cc --- a/test/bfs_test.cc Wed Nov 28 11:58:00 2012 +0100 +++ b/test/bfs_test.cc Wed Aug 07 06:55:05 2013 +0200 @@ -61,7 +61,7 @@ Node s, t, n; Arc e; int l, i; - ignore_unused_variable_warning(l,i); + ::lemon::ignore_unused_variable_warning(l,i); bool b; BType::DistMap d(G); BType::PredMap p(G); @@ -151,7 +151,7 @@ Digraph g; bool b; - ignore_unused_variable_warning(b); + ::lemon::ignore_unused_variable_warning(b); bfs(g).run(Node()); b=bfs(g).run(Node(),Node());