More Windows build fixes.

This commit is contained in:
Andrew Johnson
2012-07-19 14:59:55 -05:00
parent b09fbe5cec
commit 20b3955cd7
3 changed files with 16 additions and 15 deletions
+2 -2
View File
@@ -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;
}