1.1 --- a/test/bfs_test.cc Mon Jul 16 16:21:40 2018 +0200
1.2 +++ b/test/bfs_test.cc Wed Oct 17 19:14:07 2018 +0200
1.3 @@ -2,7 +2,7 @@
1.4 *
1.5 * This file is a part of LEMON, a generic C++ optimization library.
1.6 *
1.7 - * Copyright (C) 2003-2010
1.8 + * Copyright (C) 2003-2013
1.9 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
1.10 * (Egervary Research Group on Combinatorial Optimization, EGRES).
1.11 *
1.12 @@ -61,6 +61,7 @@
1.13 Node s, t, n;
1.14 Arc e;
1.15 int l, i;
1.16 + ::lemon::ignore_unused_variable_warning(l,i);
1.17 bool b;
1.18 BType::DistMap d(G);
1.19 BType::PredMap p(G);
1.20 @@ -150,6 +151,8 @@
1.21
1.22 Digraph g;
1.23 bool b;
1.24 + ::lemon::ignore_unused_variable_warning(b);
1.25 +
1.26 bfs(g).run(Node());
1.27 b=bfs(g).run(Node(),Node());
1.28 bfs(g).run();