fixed problem which slipped through testing because IDE modified

installed version.
This commit is contained in:
Jeff Hill
2000-06-26 23:54:53 +00:00
parent 9e9ead744a
commit 65da62b879

View File

@@ -760,7 +760,7 @@ inline tsDLIterConstBD<T> tsDLIterConstBD<T>::operator -- (int)
}
template <class T>
inline const tsDLIterBD<T> tsDLIterBD<T>::valid ()
inline bool tsDLIterBD<T>::valid () const
{
return this->pEntry ? true : false;
}
@@ -889,7 +889,7 @@ inline tsDLIterBD<T> tsDLIterBD<T>::operator -- (int)
}
template <class T>
inline const tsDLIterBD<T> tsDLIterBD<T>::valid ()
inline bool tsDLIterBD<T>::valid () const
{
return this->tsDLIterConstBD<T>::valid ();
}