From 92d9d533873ff268b545237609ba727bc53969a1 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 23 Jan 2003 22:58:23 +0000 Subject: [PATCH] cosmetic --- src/libCom/cxxTemplates/tsDLList.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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