From 875fd8fd10172655921aa2e6b6aceb131b04d530 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 5 Dec 2006 17:53:26 +0000 Subject: 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 --- lib/System/Unix/Mutex.inc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/System/Unix') 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; } } -- cgit v1.1