]> git.lyx.org Git - features.git/blob - 3rdparty/boost/boost/type_traits/is_default_constructible.hpp
Rerun extract.sh to get rid of more boost
[features.git] / 3rdparty / boost / boost / type_traits / is_default_constructible.hpp
1
2 //  (C) Copyright John Maddock 2015.
3 //  Use, modification and distribution are subject to the Boost Software License,
4 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt).
6 //
7 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
9 #ifndef BOOST_TT_IS_DEFAULT_CONSTRUCTIBLE_HPP_INCLUDED
10 #define BOOST_TT_IS_DEFAULT_CONSTRUCTIBLE_HPP_INCLUDED
11
12 #include <boost/type_traits/integral_constant.hpp>
13 #include <boost/detail/workaround.hpp>
14
15 #if BOOST_WORKAROUND(BOOST_GCC_VERSION, < 40700)
16 #include <boost/type_traits/is_abstract.hpp>
17 #endif
18
19 #if !defined(BOOST_NO_CXX11_DECLTYPE) && !BOOST_WORKAROUND(BOOST_MSVC, < 1800) && !BOOST_WORKAROUND(BOOST_GCC_VERSION, < 40500)
20
21 #include <boost/type_traits/detail/yes_no_type.hpp>
22
23 namespace boost{
24
25    namespace detail{
26
27       struct is_default_constructible_imp
28       {
29          template<typename _Tp, typename = decltype(_Tp())>
30          static boost::type_traits::yes_type test(int);
31
32          template<typename>
33          static boost::type_traits::no_type test(...);
34       };
35 #if BOOST_WORKAROUND(BOOST_GCC_VERSION, < 40700)
36       template<class T, bool b> 
37       struct is_default_constructible_abstract_filter
38       {
39           static const bool value = sizeof(is_default_constructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type);
40       };
41       template<class T> 
42       struct is_default_constructible_abstract_filter<T, true>
43       {
44           static const bool value = false;
45       };
46 #endif
47    }
48
49 #if BOOST_WORKAROUND(BOOST_GCC_VERSION, < 40700)
50    template <class T> struct is_default_constructible : public integral_constant<bool, detail::is_default_constructible_abstract_filter<T, boost::is_abstract<T>::value>::value>{};
51 #else
52    template <class T> struct is_default_constructible : public integral_constant<bool, sizeof(detail::is_default_constructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type)>{};
53 #endif
54    template <class T, std::size_t N> struct is_default_constructible<T[N]> : public is_default_constructible<T>{};
55    template <class T> struct is_default_constructible<T[]> : public is_default_constructible<T>{};
56    template <class T> struct is_default_constructible<T&> : public integral_constant<bool, false>{};
57 #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) 
58    template <class T> struct is_default_constructible<T&&> : public integral_constant<bool, false>{};
59 #endif
60    template <> struct is_default_constructible<void> : public integral_constant<bool, false>{};
61    template <> struct is_default_constructible<void const> : public integral_constant<bool, false>{};
62    template <> struct is_default_constructible<void volatile> : public integral_constant<bool, false>{};
63    template <> struct is_default_constructible<void const volatile> : public integral_constant<bool, false>{};
64
65 #else
66
67 #include <boost/type_traits/is_pod.hpp>
68
69 namespace boost{
70
71    // We don't know how to implement this, note we can not use has_trivial_constructor here
72    // because the correct implementation of that trait requires this one:
73    template <class T> struct is_default_constructible : public is_pod<T>{};
74    template <> struct is_default_constructible<void> : public integral_constant<bool, false>{};
75    template <> struct is_default_constructible<void const> : public integral_constant<bool, false>{};
76    template <> struct is_default_constructible<void volatile> : public integral_constant<bool, false>{};
77    template <> struct is_default_constructible<void const volatile> : public integral_constant<bool, false>{};
78
79 #endif
80
81 } // namespace boost
82
83 #endif // BOOST_TT_IS_DEFAULT_CONSTRUCTIBLE_HPP_INCLUDED