summaryrefslogtreecommitdiff
path: root/ace/Containers_T.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-01-14 08:34:11 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-01-14 08:34:11 +0000
commit44a2a60ff584bb81195b5355b35c505429b365a4 (patch)
tree400e2e5ee73b5a47abdf737d0e650a454dd747c8 /ace/Containers_T.cpp
parent10f43afe6f518486e36127f9ff7fec048ace9fca (diff)
downloadATCD-44a2a60ff584bb81195b5355b35c505429b365a4.tar.gz
ChangeLogTag:Thu Jan 13 23:32:03 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/Containers_T.cpp')
-rw-r--r--ace/Containers_T.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Containers_T.cpp b/ace/Containers_T.cpp
index 226bfd54012..1b7ecfca264 100644
--- a/ace/Containers_T.cpp
+++ b/ace/Containers_T.cpp
@@ -1074,7 +1074,7 @@ ACE_Fixed_Set_Iterator_Base<T, ACE_SIZE>::advance (void)
if (this->iterated_items_ < this->s_.cur_size_)
{
for (++this->next_;
- ACE_static_cast(size_t, this->next_) < this->s_.max_size_;
+ static_cast<size_t> (this->next_) < this->s_.max_size_;
++this->next_)
if (this->s_.search_structure_[this->next_].is_free_ == 0)
{
@@ -1111,7 +1111,7 @@ ACE_Fixed_Set_Iterator_Base<T, ACE_SIZE>::next_i (T *&item)
{
ACE_TRACE ("ACE_Fixed_Set_Iterator_Base<T, ACE_SIZE>::next_i");
- if (ACE_static_cast(size_t, this->next_) < this->s_.max_size_)
+ if (static_cast<size_t> (this->next_) < this->s_.max_size_)
do
{
if (this->s_.search_structure_[this->next_].is_free_ == 0)