Update contrib.
1 // Copyright David Abrahams 2002.
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 #ifndef CONSTRUCT_REFERENCE_DWA2002716_HPP
6 # define CONSTRUCT_REFERENCE_DWA2002716_HPP
8 namespace boost { namespace python { namespace detail {
10 template <class T, class Arg>
11 void construct_pointee(void* storage, Arg& x
12 # if !defined(BOOST_MSVC) || BOOST_MSVC > 1300
22 template <class T, class Arg>
23 void construct_referent_impl(void* storage, Arg& x, T&(*)())
25 construct_pointee(storage, x, (T*)0);
28 template <class T, class Arg>
29 void construct_referent(void* storage, Arg const& x, T(*tag)() = 0)
31 construct_referent_impl(storage, x, tag);
34 template <class T, class Arg>
35 void construct_referent(void* storage, Arg& x, T(*tag)() = 0)
37 construct_referent_impl(storage, x, tag);
40 }}} // namespace boost::python::detail
42 #endif // CONSTRUCT_REFERENCE_DWA2002716_HPP