
28 Mar
2004
28 Mar
'04
2:19 a.m.
// why doesn't this work? //typedef nth_iterator_type<date_to_string_bimap,2>::type to_map_itr;
It is
typedef nth_iterator_type<date_to_string_bimap,1>::type to_map_itr;
Index numbering is 0-based. I think this is the only problem in the program. If you have further problems please tell me so.
Yep, that was the problem, thx. Jeff