projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
462af9a
)
Eliminate "control reaches end of non-void function" warnings.
author
Reid Spencer
<rspencer@reidspencer.com>
Tue, 5 Dec 2006 17:53:26 +0000
(17:53 +0000)
committer
Reid 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
patch
|
blob
|
history
diff --git
a/lib/System/Unix/Mutex.inc
b/lib/System/Unix/Mutex.inc
index fa218dbb53c375e82a513504d75fa64c1a536612..d0984a4e19edf7a751b0d6e8b3eea9d993c2f860 100644
(file)
--- 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;
}
}