]> git.lyx.org Git - lyx.git/blobdiff - 3rdparty/boost/boost/type_traits/is_default_constructible.hpp
Update to boost 1.72
[lyx.git] / 3rdparty / boost / boost / type_traits / is_default_constructible.hpp
index 9a4a0a78b29ca71fa2cc8421acd6e7dd12971f32..04c023fe68cb300f6eea0636e436735118846a5a 100644 (file)
@@ -58,7 +58,7 @@ namespace boost{
       BOOST_STATIC_ASSERT_MSG(boost::is_complete<T>::value, "Arguments to is_default_constructible must be complete types");
    };
 #else
-   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)>
+   template <class T> struct is_default_constructible : public integral_constant<bool, sizeof(boost::detail::is_default_constructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type)>
    {
       BOOST_STATIC_ASSERT_MSG(boost::is_complete<T>::value, "Arguments to is_default_constructible must be complete types");
    };