Some warining fix in maps.
1.1 --- a/src/hugo/array_map_factory.h Tue Sep 07 15:14:29 2004 +0000
1.2 +++ b/src/hugo/array_map_factory.h Tue Sep 07 15:17:15 2004 +0000
1.3 @@ -226,6 +226,9 @@
1.4 capacity = 0;
1.5 }
1.6 }
1.7 +
1.8 + class iterator;
1.9 + class const_iterator;
1.10
1.11 /** Compatible iterator with the stl maps' iterators.
1.12 * It iterates on pairs of a key and a value.
2.1 --- a/src/hugo/vector_map_factory.h Tue Sep 07 15:14:29 2004 +0000
2.2 +++ b/src/hugo/vector_map_factory.h Tue Sep 07 15:17:15 2004 +0000
2.3 @@ -173,6 +173,9 @@
2.4 container.clear();
2.5 }
2.6
2.7 + class iterator;
2.8 + class const_iterator;
2.9 +
2.10 /** Compatible iterator with the stl maps' iterators.
2.11 * It iterates on pairs of a key and a value.
2.12 */