# HG changeset patch # User deba # Date 1094570235 0 # Node ID 3e30caeb9c007213a14749ba3d7c063464a0a539 # Parent a39579c35dd7f27584b2ae17674f21a1b7bd48b6 Some warining fix in maps. diff -r a39579c35dd7 -r 3e30caeb9c00 src/hugo/array_map_factory.h --- a/src/hugo/array_map_factory.h Tue Sep 07 15:14:29 2004 +0000 +++ b/src/hugo/array_map_factory.h Tue Sep 07 15:17:15 2004 +0000 @@ -226,6 +226,9 @@ capacity = 0; } } + + class iterator; + class const_iterator; /** Compatible iterator with the stl maps' iterators. * It iterates on pairs of a key and a value. diff -r a39579c35dd7 -r 3e30caeb9c00 src/hugo/vector_map_factory.h --- a/src/hugo/vector_map_factory.h Tue Sep 07 15:14:29 2004 +0000 +++ b/src/hugo/vector_map_factory.h Tue Sep 07 15:17:15 2004 +0000 @@ -173,6 +173,9 @@ container.clear(); } + class iterator; + class const_iterator; + /** Compatible iterator with the stl maps' iterators. * It iterates on pairs of a key and a value. */