switched to inline

This commit is contained in:
Jeff Hill
2002-03-27 19:10:02 +00:00
parent 79d53b6ab3
commit 7626a140da
2 changed files with 4 additions and 4 deletions

View File

@@ -796,10 +796,10 @@ inline void chronIntIdRes<ITEM>::setId (unsigned newId)
/////////////////////////////////////////////////
//
// intId::intId ()
// intId::intId
//
template <class T, unsigned MIN_INDEX_WIDTH, unsigned MAX_ID_WIDTH>
intId<T, MIN_INDEX_WIDTH, MAX_ID_WIDTH>::intId (const T &idIn)
inline intId<T, MIN_INDEX_WIDTH, MAX_ID_WIDTH>::intId (const T &idIn)
: id (idIn) {}
//

View File

@@ -141,14 +141,14 @@ private:
// tsSLNode<T>::tsSLNode ()
//
template < class T >
tsSLNode < T > :: tsSLNode () : pNext ( 0 ) {}
inline 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 > & )
inline tsSLNode < T > :: tsSLNode ( const tsSLNode < T > & )
{
}