added missing void

This commit is contained in:
Jeff Hill
2000-04-28 01:46:11 +00:00
parent ba268dff17
commit cefdde06d4
2 changed files with 4 additions and 4 deletions

View File

@@ -34,8 +34,8 @@ public:
virtual void exceptionNotify ( int status, const char *pContext, unsigned type, unsigned long count );
private:
cacNotifyIO *pIO;
virtual lock ();
virtual unlock ();
virtual void lock ();
virtual void unlock ();
static osiMutex defaultMutex;
friend class cacNotifyIO;
};

View File

@@ -27,12 +27,12 @@ cacNotify::~cacNotify ()
}
}
cacNotify::lock ()
void cacNotify::lock ()
{
this->defaultMutex.lock ();
}
cacNotify::unlock ()
void cacNotify::unlock ()
{
this->defaultMutex.unlock ();
}