annotate DEPENDENCIES/generic/include/boost/python/copy_const_reference.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // Copyright David Abrahams 2002.
Chris@16 2 // Distributed under the Boost Software License, Version 1.0. (See
Chris@16 3 // accompanying file LICENSE_1_0.txt or copy at
Chris@16 4 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 5 #ifndef COPY_CONST_REFERENCE_DWA2002131_HPP
Chris@16 6 # define COPY_CONST_REFERENCE_DWA2002131_HPP
Chris@16 7
Chris@16 8 # include <boost/python/detail/prefix.hpp>
Chris@16 9 # include <boost/python/detail/indirect_traits.hpp>
Chris@16 10 # include <boost/mpl/if.hpp>
Chris@16 11 # include <boost/python/to_python_value.hpp>
Chris@16 12
Chris@16 13 namespace boost { namespace python {
Chris@16 14
Chris@16 15 namespace detail
Chris@16 16 {
Chris@16 17 template <class R>
Chris@16 18 struct copy_const_reference_expects_a_const_reference_return_type
Chris@16 19 # if defined(__GNUC__) && __GNUC__ >= 3 || defined(__EDG__)
Chris@16 20 {}
Chris@16 21 # endif
Chris@16 22 ;
Chris@16 23 }
Chris@16 24
Chris@16 25 template <class T> struct to_python_value;
Chris@16 26
Chris@16 27 struct copy_const_reference
Chris@16 28 {
Chris@16 29 template <class T>
Chris@16 30 struct apply
Chris@16 31 {
Chris@16 32 typedef typename mpl::if_c<
Chris@16 33 indirect_traits::is_reference_to_const<T>::value
Chris@16 34 , to_python_value<T>
Chris@16 35 , detail::copy_const_reference_expects_a_const_reference_return_type<T>
Chris@16 36 >::type type;
Chris@16 37 };
Chris@16 38 };
Chris@16 39
Chris@16 40
Chris@16 41 }} // namespace boost::python
Chris@16 42
Chris@16 43 #endif // COPY_CONST_REFERENCE_DWA2002131_HPP