diff --git a/include/boost/type_traits/has_trivial_move_constructor.hpp b/include/boost/type_traits/has_trivial_move_constructor.hpp index 2195be8..c3da65b 100644 --- a/include/boost/type_traits/has_trivial_move_constructor.hpp +++ b/include/boost/type_traits/has_trivial_move_constructor.hpp @@ -21,6 +21,11 @@ #include #endif +#if defined(__GNUC__) || defined(__clang) +#include +#endif + + namespace boost { template struct has_trivial_move_constructor : public integral_constant{};