More Windows build fixes.
This commit is contained in:
@@ -40,7 +40,7 @@ template <class T>
|
||||
class tsSLNode {
|
||||
public:
|
||||
tsSLNode ();
|
||||
tsSLNode < T > & operator = ( const tsSLNode < T > & ) const;
|
||||
tsSLNode < T > & operator = ( const tsSLNode < T > & );
|
||||
private:
|
||||
void removeNextItem (); // removes the item after this node
|
||||
T *pNext;
|
||||
@@ -148,7 +148,7 @@ inline tsSLNode < T > :: tsSLNode ( const tsSLNode < T > & )
|
||||
//
|
||||
template < class T >
|
||||
inline tsSLNode < T > & tsSLNode < T >::operator =
|
||||
( const tsSLNode < T > & ) const
|
||||
( const tsSLNode < T > & )
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user