fixed duplicate definition of valid () member func

This commit is contained in:
Jeff Hill
2000-06-27 17:30:32 +00:00
parent d815872938
commit d633a0001e
+1 -1
View File
@@ -760,7 +760,7 @@ inline tsDLIterConstBD<T> tsDLIterConstBD<T>::operator -- (int)
}
template <class T>
inline bool tsDLIterBD<T>::valid () const
inline bool tsDLIterConstBD<T>::valid () const
{
return this->pEntry ? true : false;
}