1.1 --- a/test/bellman_ford_test.cc Sat Oct 07 00:19:19 2017 +0200
1.2 +++ b/test/bellman_ford_test.cc Sat Oct 07 00:21:15 2017 +0200
1.3 @@ -100,11 +100,13 @@
1.4 pp = const_bf_test.path(t);
1.5 pp = const_bf_test.negativeCycle();
1.6
1.7 +#ifdef LEMON_CXX11
1.8 for (BF::ActiveIt it(const_bf_test); it != INVALID; ++it) {}
1.9 for (auto n: const_bf_test.activeNodes()) { ::lemon::ignore_unused_variable_warning(n); }
1.10 for (Digraph::Node n: const_bf_test.activeNodes()) {
1.11 ::lemon::ignore_unused_variable_warning(n);
1.12 }
1.13 +#endif
1.14 }
1.15 {
1.16 BF::SetPredMap<concepts::ReadWriteMap<Node,Arc> >