diff --git a/include/boost/type_traits/has_nothrow_assign.hpp b/include/boost/type_traits/has_nothrow_assign.hpp index 0d08c4d..eb542f9 100644 --- a/include/boost/type_traits/has_nothrow_assign.hpp +++ b/include/boost/type_traits/has_nothrow_assign.hpp @@ -18,6 +18,9 @@ #if defined(__GNUC__) #include #include +#ifdef BOOST_INTEL +#include +#endif #endif namespace boost { diff --git a/include/boost/type_traits/has_nothrow_copy.hpp b/include/boost/type_traits/has_nothrow_copy.hpp index f6f6523..bbfcb1d 100644 --- a/include/boost/type_traits/has_nothrow_copy.hpp +++ b/include/boost/type_traits/has_nothrow_copy.hpp @@ -17,6 +17,9 @@ #if defined(BOOST_CLANG) || defined(__GNUC__) || defined(__ghs__) || defined(__CODEGEARC__) #include #include +#ifdef BOOST_INTEL +#include +#endif #elif defined(BOOST_MSVC) || defined(BOOST_INTEL) #include #endif diff --git a/include/boost/type_traits/is_convertible.hpp b/include/boost/type_traits/is_convertible.hpp index c6da211..6b4aa8d 100644 --- a/include/boost/type_traits/is_convertible.hpp +++ b/include/boost/type_traits/is_convertible.hpp @@ -13,6 +13,7 @@ #define BOOST_TT_IS_CONVERTIBLE_HPP_INCLUDED #include +#include #ifndef BOOST_IS_CONVERTIBLE #include #include