use iter.valid() and not iter.eol() (cosmetic)

This commit is contained in:
Jeff Hill
2000-06-27 22:55:50 +00:00
parent f27e839ab1
commit a94770361c
+2 -2
View File
@@ -48,7 +48,7 @@ CASG::~CASG ()
if ( this->verify () ) {
this->mutex.lock ();
tsDLIterBD <syncGroupNotify> notify ( this->ioList.first () );
while ( notify != notify.eol () ) {
while ( notify.valid () ) {
notify->destroy ();
notify = this->ioList.first ();
}
@@ -161,7 +161,7 @@ void CASG::show ( unsigned level) const
if ( level ) {
this->mutex.lock ();
tsDLIterBD <syncGroupNotify> notify ( this->ioList.first () );
while ( notify != notify.eol () ) {
while ( notify.valid () ) {
notify->show (level);
}
this->mutex.unlock ();