From 2fc65e67a8a47b016082f06c4343573aa61c7121 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 11 Jun 2015 10:58:09 +0100 Subject: [PATCH] Add missing #include to has_trivial_move_constructor.hpp. --- include/boost/type_traits/has_trivial_move_constructor.hpp | 5 +++++ 1 file changed, 5 insertions(+) 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{};