libCom: Explicitly use namespace std for size_t declaration in epicsSingleton.h

This fixes a compile error that occurs in new gcc versions (since ~4.6.1)
This commit is contained in:
Ralph Lange
2011-08-08 18:31:19 +02:00
parent f59825a462
commit bc4a7854ec

View File

@@ -34,7 +34,7 @@ public:
void * pInstance () const;
private:
void * _pInstance;
size_t _refCount;
std :: size_t _refCount;
SingletonUntyped ( const SingletonUntyped & );
SingletonUntyped & operator = ( const SingletonUntyped & );
};