From 229e99880b26c78a07a71f8c76568ea15fa743ea Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 11 Jun 2015 10:59:52 +0100 Subject: [PATCH] Add missing #include to has_trivial_move_constructor.hpp --- include/boost/type_traits/has_trivial_move_constructor.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/type_traits/has_trivial_move_constructor.hpp b/include/boost/type_traits/has_trivial_move_constructor.hpp index c3da65b..1a032a9 100644 --- a/include/boost/type_traits/has_trivial_move_constructor.hpp +++ b/include/boost/type_traits/has_trivial_move_constructor.hpp @@ -23,6 +23,7 @@ #if defined(__GNUC__) || defined(__clang) #include +#include #endif