summaryrefslogtreecommitdiff
path: root/ace/Map_Manager.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-04 15:38:01 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-04 15:38:01 +0000
commit9639802b26666fdbac9f4341c239c7304b6ee78a (patch)
treed38e7e2bb2dde6b63805296749577735c865b6ac /ace/Map_Manager.cpp
parentfaf49b197537a5a185136f7dbb54d2235245b2e7 (diff)
downloadATCD-9639802b26666fdbac9f4341c239c7304b6ee78a.tar.gz
removed const from static cast to avoid warnings about meaningless type qualifier from GreenHills
Diffstat (limited to 'ace/Map_Manager.cpp')
-rw-r--r--ace/Map_Manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Map_Manager.cpp b/ace/Map_Manager.cpp
index ab2a2e9e8a6..3be42fbfa63 100644
--- a/ace/Map_Manager.cpp
+++ b/ace/Map_Manager.cpp
@@ -627,7 +627,7 @@ ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::done (void) const
return this->map_man_->search_structure_ == 0
// Note that this->next_ is never negative at this point...
- || ACE_static_cast (const size_t, this->next_) >= this->map_man_->cur_size_
+ || ACE_static_cast (size_t, this->next_) >= this->map_man_->cur_size_
|| this->next_ <= -1;
}