diff -r acdd0bd75a55 -r d8073df341f6 test/maps_test.cc --- a/test/maps_test.cc Fri Sep 25 12:12:37 2009 +0200 +++ b/test/maps_test.cc Fri Sep 25 12:22:42 2009 +0200 @@ -526,7 +526,6 @@ Graph gr; typedef CrossRefMap CRMap; - typedef CRMap::ValueIterator ValueIt; CRMap map(gr); Node n0 = gr.addNode(); @@ -546,7 +545,7 @@ check(map.count('A') == 1 && map.count('B') == 1 && map.count('C') == 1, "Wrong CrossRefMap::count()"); - ValueIt it = map.beginValue(); + CRMap::ValueIt it = map.beginValue(); check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' && it == map.endValue(), "Wrong value iterator"); @@ -742,10 +741,10 @@ check(static_cast(it) == INVALID, "Wrong value"); } - for (Ivm::ValueIterator vit = map1.beginValue(); + for (Ivm::ValueIt vit = map1.beginValue(); vit != map1.endValue(); ++vit) { check(map1[static_cast(Ivm::ItemIt(map1, *vit))] == *vit, - "Wrong ValueIterator"); + "Wrong ValueIt"); } for (int i = 0; i < num; ++i) {