diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-26 22:17:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-26 22:17:24 +0000 |
commit | f35d88f439507c729e1f98522d9865b02fdc7c9c (patch) | |
tree | 708239aee1803b615f850189d166071c3699cc49 /lib/System/Unix/Mutex.inc | |
parent | de0118c324a3fb8b0b5afa8e46996d9b81666bfd (diff) |
remove a constructor implementation that isn't declared
in the header. How can both clang and gcc accept this?
PR6703
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99658 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix/Mutex.inc')
-rw-r--r-- | lib/System/Unix/Mutex.inc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/System/Unix/Mutex.inc b/lib/System/Unix/Mutex.inc index 10e7ecb75a..4a5e28de27 100644 --- a/lib/System/Unix/Mutex.inc +++ b/lib/System/Unix/Mutex.inc @@ -29,12 +29,6 @@ MutexImpl::~MutexImpl() } bool -MutexImpl::MutexImpl() -{ - return true; -} - -bool MutexImpl::release() { return true; |