summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-03-30 12:44:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-03-30 12:44:05 +0000
commit12d8e31275099325d47f9ec654662bae8de85352 (patch)
tree78dbb319fe373e89a157eaba99d5773d9f93a88c /tests
parent42760667452872130d22765be0da4a9cc43427a3 (diff)
downloadATCD-12d8e31275099325d47f9ec654662bae8de85352.tar.gz
ChangeLogTag: Thu Mar 30 12:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/Hash_Map_Manager_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Hash_Map_Manager_Test.cpp b/tests/Hash_Map_Manager_Test.cpp
index 26a41c0cd98..d5cbac6a890 100644
--- a/tests/Hash_Map_Manager_Test.cpp
+++ b/tests/Hash_Map_Manager_Test.cpp
@@ -161,7 +161,7 @@ run_test (void)
// Let's test the iterator while we are at it.
{
- HASH_STRING_ENTRY *entry;
+ HASH_STRING_ENTRY *entry = 0;
size_t i = 0;
for (HASH_STRING_ITER hash_iter (hash);
@@ -179,7 +179,7 @@ run_test (void)
// And now test the const iterator
{
- HASH_STRING_ENTRY *entry;
+ HASH_STRING_ENTRY *entry = 0;
size_t i = 0;
for (HASH_STRING_CONST_ITER hash_iter (hash);
@@ -213,7 +213,7 @@ run_test (void)
// Let's test the iterator backwards.
{
- HASH_STRING_ENTRY *entry;
+ HASH_STRING_ENTRY *entry = 0;
size_t i = 0;
for (HASH_STRING_REVERSE_ITER hash_iter (hash);