summaryrefslogtreecommitdiff
path: root/ace/Handle_Set.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-16 22:31:22 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-16 22:31:22 +0000
commitbe1bfc72ae85f04171c3d59747e0a178baef80c0 (patch)
tree354ca37e081bcdc2d4b3ed615c826583de785d1b /ace/Handle_Set.cpp
parent4440166ea0cdd6a8714fddac1abf0f3d11e4dfc7 (diff)
downloadATCD-be1bfc72ae85f04171c3d59747e0a178baef80c0.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Handle_Set.cpp')
-rw-r--r--ace/Handle_Set.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Handle_Set.cpp b/ace/Handle_Set.cpp
index 12037575cfd..0648a515032 100644
--- a/ace/Handle_Set.cpp
+++ b/ace/Handle_Set.cpp
@@ -207,8 +207,8 @@ ACE_Handle_Set_Iterator::ACE_Handle_Set_Iterator (const ACE_Handle_Set &f)
// Loop until we've found the first non-zero bit or we run off the
// end of the bitset.
for (;
- this->handles_.mask_.fds_bits[this->index_] == 0
- && this->num_ < ACE_Handle_Set::MAXSIZE;
+ this->num_ < ACE_Handle_Set::MAXSIZE
+ && this->handles_.mask_.fds_bits[this->index_] == 0;
this->index_++)
this->num_ += ACE_Handle_Set::WORDSIZE;