diff --git a/src/libCom/cxxTemplates/resourceLib.h b/src/libCom/cxxTemplates/resourceLib.h index 40699852a..eae4579d5 100644 --- a/src/libCom/cxxTemplates/resourceLib.h +++ b/src/libCom/cxxTemplates/resourceLib.h @@ -594,8 +594,7 @@ resTable::~resTable() // // resTable::resTable ( const resTable & ) -// private - not to be used - implemented to shush -// MS warnings +// private - not to be used - implemented to eliminate warnings // template inline resTable::resTable ( const resTable & ) @@ -604,8 +603,7 @@ inline resTable::resTable ( const resTable & ) // // resTable::resTable & operator = ( const resTable & ) -// private - not to be used - implemented to shush -// MS warnings +// private - not to be used - implemented to eliminate warnings // template inline resTable & resTable::operator = ( const resTable & ) diff --git a/src/libCom/cxxTemplates/tsSLList.h b/src/libCom/cxxTemplates/tsSLList.h index 1849bcda5..1d4b0053e 100644 --- a/src/libCom/cxxTemplates/tsSLList.h +++ b/src/libCom/cxxTemplates/tsSLList.h @@ -136,10 +136,19 @@ private: ////////////////////////////////////////// // -// tsSLNode::tsSLNode +// tsSLNode::tsSLNode () // template < class T > -tsSLNode < T > ::tsSLNode () : pNext ( 0 ) {} +tsSLNode < T > :: tsSLNode () : pNext ( 0 ) {} + +// +// tsSLNode::tsSLNode ( const tsSLNode < T > & ) +// private - not to be used - implemented to eliminate warnings +// +template < class T > +tsSLNode < T > :: tsSLNode ( const tsSLNode < T > & ) +{ +} // // tsSLNode::operator =