From a94770361cfb8bcff0c5b7665e61e3c552d249c7 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 27 Jun 2000 22:55:50 +0000 Subject: [PATCH] use iter.valid() and not iter.eol() (cosmetic) --- src/ca/CASG.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/CASG.cpp b/src/ca/CASG.cpp index 303a038a3..838ed45f3 100644 --- a/src/ca/CASG.cpp +++ b/src/ca/CASG.cpp @@ -48,7 +48,7 @@ CASG::~CASG () if ( this->verify () ) { this->mutex.lock (); tsDLIterBD 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 notify ( this->ioList.first () ); - while ( notify != notify.eol () ) { + while ( notify.valid () ) { notify->show (level); } this->mutex.unlock ();