fixed warnings

This commit is contained in:
Jeff Hill
2001-10-22 16:17:59 +00:00
parent 8d2eaa9cf5
commit e46a919662
2 changed files with 13 additions and 6 deletions
+2 -4
View File
@@ -594,8 +594,7 @@ resTable<T,ID>::~resTable()
//
// resTable<T,ID>::resTable ( const resTable & )
// private - not to be used - implemented to shush
// MS warnings
// private - not to be used - implemented to eliminate warnings
//
template <class T, class ID>
inline resTable<T,ID>::resTable ( const resTable & )
@@ -604,8 +603,7 @@ inline resTable<T,ID>::resTable ( const resTable & )
//
// resTable<T,ID>::resTable & operator = ( const resTable & )
// private - not to be used - implemented to shush
// MS warnings
// private - not to be used - implemented to eliminate warnings
//
template <class T, class ID>
inline resTable<T,ID> & resTable<T,ID>::operator = ( const resTable & )
+11 -2
View File
@@ -136,10 +136,19 @@ private:
//////////////////////////////////////////
//
// tsSLNode<T>::tsSLNode
// tsSLNode<T>::tsSLNode ()
//
template < class T >
tsSLNode < T > ::tsSLNode () : pNext ( 0 ) {}
tsSLNode < T > :: tsSLNode () : pNext ( 0 ) {}
//
// tsSLNode<T>::tsSLNode ( const tsSLNode < T > & )
// private - not to be used - implemented to eliminate warnings
//
template < class T >
tsSLNode < T > :: tsSLNode ( const tsSLNode < T > & )
{
}
//
// tsSLNode<T>::operator =