Eliminate "control reaches end of non-void function" warnings.

llvm-svn: 32225
This commit is contained in:
Reid Spencer 2006-12-05 17:53:26 +00:00
parent 38062acebb
commit 5bf28d5efe

View File

@ -31,16 +31,19 @@ Mutex::~Mutex()
bool
Mutex::acquire()
{
return true;
}
bool
Mutex::release()
{
return true;
}
bool
Mutex::tryacquire( void )
{
return true;
}
}