aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-05 17:53:26 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-05 17:53:26 +0000
commit875fd8fd10172655921aa2e6b6aceb131b04d530 (patch)
treeb1070937005819fc6a1387cb37766f2747f7fa73 /lib/System/Unix
parent462af9a2e0e3667bc35203be2d14086bf14f0a02 (diff)
downloadexternal_llvm-875fd8fd10172655921aa2e6b6aceb131b04d530.zip
external_llvm-875fd8fd10172655921aa2e6b6aceb131b04d530.tar.gz
external_llvm-875fd8fd10172655921aa2e6b6aceb131b04d530.tar.bz2
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
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Mutex.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/System/Unix/Mutex.inc b/lib/System/Unix/Mutex.inc
index fa218db..d0984a4 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;
}
}