summaryrefslogtreecommitdiff
path: root/src/third_party/boost/boost/thread/recursive_mutex.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/boost/boost/thread/recursive_mutex.hpp')
-rw-r--r--src/third_party/boost/boost/thread/recursive_mutex.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/third_party/boost/boost/thread/recursive_mutex.hpp b/src/third_party/boost/boost/thread/recursive_mutex.hpp
deleted file mode 100644
index d5f6116e72c..00000000000
--- a/src/third_party/boost/boost/thread/recursive_mutex.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef BOOST_THREAD_RECURSIVE_MUTEX_HPP
-#define BOOST_THREAD_RECURSIVE_MUTEX_HPP
-
-// recursive_mutex.hpp
-//
-// (C) Copyright 2007 Anthony Williams
-//
-// Distributed under the Boost Software License, Version 1.0. (See
-// accompanying file LICENSE_1_0.txt or copy at
-// http://www.boost.org/LICENSE_1_0.txt)
-
-#include <boost/thread/detail/platform.hpp>
-#if defined(BOOST_THREAD_PLATFORM_WIN32)
-#include <boost/thread/win32/recursive_mutex.hpp>
-#elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
-#include <boost/thread/pthread/recursive_mutex.hpp>
-#else
-#error "Boost threads unavailable on this platform"
-#endif
-
-#endif