]> git.lyx.org Git - lyx.git/blobdiff - 3rdparty/boost/boost/type_traits/is_constructible.hpp
Update to boost 1.72
[lyx.git] / 3rdparty / boost / boost / type_traits / is_constructible.hpp
index da6259948b938eec6155356ec5053965fe91169b..6969cd63bea2e9dcb81803217d2f91c3120672a1 100644 (file)
@@ -51,7 +51,7 @@ namespace boost{
    {
       BOOST_STATIC_ASSERT_MSG(::boost::is_complete<T>::value, "The target type must be complete in order to test for constructibility");
    };
-   template <class T, class Arg> struct is_constructible<T, Arg> : public integral_constant<bool, is_destructible<T>::value && sizeof(detail::is_constructible_imp::test1<T, Arg>(0)) == sizeof(boost::type_traits::yes_type)>
+   template <class T, class Arg> struct is_constructible<T, Arg> : public integral_constant<bool, is_destructible<T>::value && sizeof(boost::detail::is_constructible_imp::test1<T, Arg>(0)) == sizeof(boost::type_traits::yes_type)>
    {
       BOOST_STATIC_ASSERT_MSG(::boost::is_complete<T>::value, "The target type must be complete in order to test for constructibility");
    };