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; }