1.1 --- a/NEWS Sat Aug 10 12:25:35 2013 +0200
1.2 +++ b/NEWS Wed Jul 24 10:21:35 2013 +0200
1.3 @@ -19,6 +19,7 @@
1.4 #461: Bugfix in assert.h
1.5 #470: Fix compilation issues related to various gcc versions
1.6 #439: Bugfix in biNodeConnected()
1.7 + #469: Bugfix in test/maps_test.cc
1.8
1.9 2011-11-09 Version 1.2.3 released
1.10
2.1 --- a/test/maps_test.cc Sat Aug 10 12:25:35 2013 +0200
2.2 +++ b/test/maps_test.cc Wed Jul 24 10:21:35 2013 +0200
2.3 @@ -535,7 +535,8 @@
2.4 "Wrong SourceMap or TargetMap");
2.5
2.6 typedef Orienter<Graph, const ConstMap<Edge, bool> > Digraph;
2.7 - Digraph dgr(gr, constMap<Edge, bool>(true));
2.8 + ConstMap<Edge, bool> true_edge_map(true);
2.9 + Digraph dgr(gr, true_edge_map);
2.10 OutDegMap<Digraph> odm(dgr);
2.11 InDegMap<Digraph> idm(dgr);
2.12