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

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