summaryrefslogtreecommitdiff
path: root/tests/Hash_Map_Manager_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Hash_Map_Manager_Test.cpp')
-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 d5cbac6a890..26a41c0cd98 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 = 0;
+ HASH_STRING_ENTRY *entry;
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 = 0;
+ HASH_STRING_ENTRY *entry;
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 = 0;
+ HASH_STRING_ENTRY *entry;
size_t i = 0;
for (HASH_STRING_REVERSE_ITER hash_iter (hash);