summaryrefslogtreecommitdiff
path: root/ace/Hash_Map_Manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Hash_Map_Manager.cpp')
-rw-r--r--ace/Hash_Map_Manager.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/ace/Hash_Map_Manager.cpp b/ace/Hash_Map_Manager.cpp
index 14de0442321..5e9eb59279e 100644
--- a/ace/Hash_Map_Manager.cpp
+++ b/ace/Hash_Map_Manager.cpp
@@ -191,8 +191,6 @@ ACE_Hash_Map_Manager<EXT_ID, INT_ID, LOCK>::bind_i (const EXT_ID &ext_id,
ACE_Hash_Map_Entry<EXT_ID, INT_ID> *temp = this->table_[loc];
- assert (temp != 0);
-
for (this->sentinel_->ext_id_ = ext_id;
temp->ext_id_ != ext_id;
temp = temp->next_)
@@ -233,8 +231,6 @@ ACE_Hash_Map_Manager<EXT_ID, INT_ID, LOCK>::trybind_i (const EXT_ID &ext_id,
ACE_Hash_Map_Entry<EXT_ID, INT_ID> *temp = this->table_[loc];
- assert (temp != 0);
-
for (this->sentinel_->ext_id_ = ext_id;
temp->ext_id_ != ext_id;
temp = temp->next_)
@@ -334,8 +330,6 @@ ACE_Hash_Map_Manager<EXT_ID, INT_ID, LOCK>::shared_find (const EXT_ID &ext_id,
ACE_Hash_Map_Entry<EXT_ID, INT_ID> *temp = this->table_[loc];
- assert (temp != 0);
-
for (this->sentinel_->ext_id_ = ext_id;
temp->ext_id_ != ext_id;
temp = temp->next_)