From 865ab301620045259d4804d2c44923c776af7bb7 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 31 Jan 2001 02:40:17 +0000 Subject: [PATCH] fixed parse error --- src/libCom/cxxTemplates/resourceLib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/cxxTemplates/resourceLib.h b/src/libCom/cxxTemplates/resourceLib.h index c13338958..765f03377 100644 --- a/src/libCom/cxxTemplates/resourceLib.h +++ b/src/libCom/cxxTemplates/resourceLib.h @@ -160,7 +160,7 @@ public: void traverse ( pSetMFArg(pCB) ); void traverseConst ( pSetMFArgConst(pCB) ) const; - unsigned numEntriesInstalled () const + unsigned numEntriesInstalled () const; private: tsSLList *pTable; @@ -470,7 +470,7 @@ void resTable::traverseConst (pSetMFArgConst(pCB)) const } template -inline void resTable::numEntriesInstalled () const +inline unsigned resTable::numEntriesInstalled () const { return this->nInUse; }