diff options
Diffstat (limited to 'libcxx/src/atomic.cpp')
-rw-r--r-- | libcxx/src/atomic.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libcxx/src/atomic.cpp b/libcxx/src/atomic.cpp deleted file mode 100644 index dc354df2303..00000000000 --- a/libcxx/src/atomic.cpp +++ /dev/null @@ -1,23 +0,0 @@ -//===------------------------- atomic.cpp ---------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "__mutex_base" -#include "atomic" - -_LIBCPP_BEGIN_NAMESPACE_STD - -_LIBCPP_VISIBLE -mutex& -__not_atomic_mut() -{ - static mutex m; - return m; -} - -_LIBCPP_END_NAMESPACE_STD |