Eliminate "control reaches end of non-void function" warnings.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 5 Dec 2006 17:53:26 +0000 (17:53 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 5 Dec 2006 17:53:26 +0000 (17:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32225 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Unix/Mutex.inc

index fa218dbb53c375e82a513504d75fa64c1a536612..d0984a4e19edf7a751b0d6e8b3eea9d993c2f860 100644 (file)
@@ -31,16 +31,19 @@ Mutex::~Mutex()
 bool 
 Mutex::acquire()
 {
+  return true;
 }
 
 bool 
 Mutex::release()
 {
+  return true;
 }
 
 bool 
 Mutex::tryacquire( void )
 {
+  return true;
 }
 
 }