diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-05 17:53:26 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-05 17:53:26 +0000 |
commit | 875fd8fd10172655921aa2e6b6aceb131b04d530 (patch) | |
tree | b1070937005819fc6a1387cb37766f2747f7fa73 | |
parent | 462af9a2e0e3667bc35203be2d14086bf14f0a02 (diff) |
Eliminate "control reaches end of non-void function" warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32225 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/System/Unix/Mutex.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/System/Unix/Mutex.inc b/lib/System/Unix/Mutex.inc index fa218dbb53..d0984a4e19 100644 --- a/lib/System/Unix/Mutex.inc +++ b/lib/System/Unix/Mutex.inc @@ -31,16 +31,19 @@ Mutex::~Mutex() bool Mutex::acquire() { + return true; } bool Mutex::release() { + return true; } bool Mutex::tryacquire( void ) { + return true; } } |