summaryrefslogtreecommitdiff
path: root/ace/Hash_Map_Manager.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-05 05:01:13 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-02-05 05:01:13 +0000
commite589686a7e0687a5713b8495c74e83a9752e57c4 (patch)
treee502ccaf24f415d15f301840b4d384145a93d2cb /ace/Hash_Map_Manager.cpp
parentf18e114a04aa1dc6412b16aae0d59141d9c863db (diff)
downloadATCD-e589686a7e0687a5713b8495c74e83a9752e57c4.tar.gz
foo
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_)