diff options
| author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-16 23:43:24 +0000 |
|---|---|---|
| committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-16 23:43:24 +0000 |
| commit | 563c76e40583358b0e096c37cd374dbffe30393c (patch) | |
| tree | 362ddb5b27d48f75b2d46c14e77de73d0637fcdb /tests/Map_Manager_Test.cpp | |
| parent | 3198a486c0ee60c5e0d5635a22c0b2366b10a2c1 (diff) | |
| download | ATCD-563c76e40583358b0e096c37cd374dbffe30393c.tar.gz | |
.
Diffstat (limited to 'tests/Map_Manager_Test.cpp')
| -rw-r--r-- | tests/Map_Manager_Test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Map_Manager_Test.cpp b/tests/Map_Manager_Test.cpp index 59c69f34194..82ff318c398 100644 --- a/tests/Map_Manager_Test.cpp +++ b/tests/Map_Manager_Test.cpp @@ -165,7 +165,7 @@ test_hash_map_manager (size_t table_size, size_t iterations) { i = 0; - HASH_MAP_MANAGER end = map.end (); + HASH_MAP_MANAGER::iterator end = map.end (); for (HASH_MAP_MANAGER::iterator iter = map.begin (); iter != end; iter++) @@ -273,7 +273,7 @@ test_map_manager (size_t table_size, size_t iterations) { i = 0; - ITERATOR end = map.end () + ITERATOR end = map.end (); for (ITERATOR iter = map.begin (); iter != end; iter ++) @@ -394,7 +394,7 @@ test_map_manager (size_t table_size, size_t iterations) ENTRY entry; k = iterations - 1; - MAP_MANAGER::reverse_iterator iter rend = map.rend (); + MAP_MANAGER::reverse_iterator rend = map.rend (); for (MAP_MANAGER::reverse_iterator iter = map.rbegin (); iter != rend; |
