backed out part of the operator = change

This commit is contained in:
Jeff Hill
2000-10-20 22:09:54 +00:00
parent d107f664e5
commit 1e6d54f6da

View File

@@ -60,7 +60,7 @@ class tsDLNode {
friend class tsDLBwdIter<T>; // deprecated
public:
tsDLNode();
tsDLNode<T> & operator = (const tsDLNode<T> &) const;
tsDLNode<T> operator = (const tsDLNode<T> &) const;
private:
T *pNext;
T *pPrev;
@@ -238,7 +238,7 @@ inline tsDLNode<T>::tsDLNode() : pNext(0), pPrev(0) {}
// do _not_ change the node pointers
//
template <class T>
inline tsDLNode<T> & tsDLNode<T>::operator = (const tsDLNode<T> &) const { return tsDLNode<T>() }
inline tsDLNode<T> tsDLNode<T>::operator = (const tsDLNode<T> &) const { return tsDLNode<T>() }
//template <class T>
//T * tsDLNode<T>::getNext (void) const