From 65da62b8792d625fbcddfae0d67f9eba02cc6310 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 26 Jun 2000 23:54:53 +0000 Subject: [PATCH] fixed problem which slipped through testing because IDE modified installed version. --- src/libCom/cxxTemplates/tsDLList.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/cxxTemplates/tsDLList.h b/src/libCom/cxxTemplates/tsDLList.h index 33c2578be..ac1539497 100644 --- a/src/libCom/cxxTemplates/tsDLList.h +++ b/src/libCom/cxxTemplates/tsDLList.h @@ -760,7 +760,7 @@ inline tsDLIterConstBD tsDLIterConstBD::operator -- (int) } template -inline const tsDLIterBD tsDLIterBD::valid () +inline bool tsDLIterBD::valid () const { return this->pEntry ? true : false; } @@ -889,7 +889,7 @@ inline tsDLIterBD tsDLIterBD::operator -- (int) } template -inline const tsDLIterBD tsDLIterBD::valid () +inline bool tsDLIterBD::valid () const { return this->tsDLIterConstBD::valid (); }