summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp
diff options
context:
space:
mode:
authorbugaevskiy <[email protected]>2022-12-31 17:40:08 +0300
committerbugaevskiy <[email protected]>2022-12-31 17:40:08 +0300
commit030896f914b07ae082ccf0b6b00df926d22d2454 (patch)
treee520bd22d01faaf07ff303c49ad2fdfefa114f67 /contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp
parent014fdab1c4bb0fedea59974a6bb13ef3ec3b67cb (diff)
Remove Boost metaproject
Diffstat (limited to 'contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp')
-rw-r--r--contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp b/contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp
deleted file mode 100644
index d872314a74c..00000000000
--- a/contrib/restricted/boost/python/src/converter/arg_to_python_base.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright David Abrahams 2002.
-// 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/python/converter/arg_to_python_base.hpp>
-#include <boost/python/errors.hpp>
-#include <boost/python/converter/registrations.hpp>
-#include <boost/python/handle.hpp>
-#include <boost/python/refcount.hpp>
-
-namespace boost { namespace python { namespace converter {
-
-namespace detail
-{
- arg_to_python_base::arg_to_python_base(
- void const volatile* source, registration const& converters)
-# if !defined(BOOST_MSVC) || BOOST_MSVC <= 1300 || _MSC_FULL_VER > 13102179
- : handle<>
-# else
- : m_ptr
-# endif
- (converters.to_python(source))
- {
- }
-}
-
-}}} // namespace boost::python::converter