]> git.lyx.org Git - lyx.git/blobdiff - 3rdparty/boost/boost/type_traits/is_destructible.hpp
Update to boost 1.72
[lyx.git] / 3rdparty / boost / boost / type_traits / is_destructible.hpp
index cc72fb7a9a58d9f6e14349cc2ebd0cc08b811db1..c32e758c6cf8979011351672db7dfeeb84052128 100644 (file)
@@ -34,7 +34,7 @@ namespace boost{
 
    }
 
-   template <class T> struct is_destructible : public integral_constant<bool, sizeof(detail::is_destructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type)>
+   template <class T> struct is_destructible : public integral_constant<bool, sizeof(boost::detail::is_destructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type)>
    {
       BOOST_STATIC_ASSERT_MSG(boost::is_complete<T>::value, "Arguments to is_destructible must be complete types");
    };