diff --git a/src/libCom/cxxTemplates/tsDLList.h b/src/libCom/cxxTemplates/tsDLList.h index 53086d6f4..a664dc0ae 100644 --- a/src/libCom/cxxTemplates/tsDLList.h +++ b/src/libCom/cxxTemplates/tsDLList.h @@ -30,7 +30,7 @@ template class tsDLIter; // a node in a doubly linked list containing entries of type T // ( class T must publicly derive from class tsDLNode ) // -template +template < class T > class tsDLNode { public: tsDLNode (); @@ -50,7 +50,7 @@ private: // a doubly linked list containing entries of type T // ( class T must publicly derive from class tsDLNode ) // -template +template < class T > class tsDLList { public: tsDLList (); // create empty list