From 3cf613228db51e12ecae51578745242dad6d0ef8 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 14 Jan 2015 19:17:10 +0000 Subject: [PATCH] Fix Linux #include issues. --- include/boost/type_traits/has_nothrow_assign.hpp | 3 +++ include/boost/type_traits/has_nothrow_copy.hpp | 3 +++ include/boost/type_traits/is_convertible.hpp | 1 + 3 files changed, 7 insertions(+) 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