diff -r cd72eae05bdf -r 3c00344f49c9 test/bfs_test.cc --- a/test/bfs_test.cc Mon Jul 16 16:21:40 2018 +0200 +++ b/test/bfs_test.cc Wed Oct 17 19:14:07 2018 +0200 @@ -2,7 +2,7 @@ * * This file is a part of LEMON, a generic C++ optimization library. * - * Copyright (C) 2003-2010 + * Copyright (C) 2003-2013 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * @@ -61,6 +61,7 @@ Node s, t, n; Arc e; int l, i; + ::lemon::ignore_unused_variable_warning(l,i); bool b; BType::DistMap d(G); BType::PredMap p(G); @@ -150,6 +151,8 @@ Digraph g; bool b; + ::lemon::ignore_unused_variable_warning(b); + bfs(g).run(Node()); b=bfs(g).run(Node(),Node()); bfs(g).run();