Add missing #include to has_trivial_move_constructor.hpp.

This commit is contained in:
jzmaddock
2015-06-11 10:58:09 +01:00
parent d44141cf88
commit 2fc65e67a8

View File

@ -21,6 +21,11 @@
#include <boost/type_traits/is_volatile.hpp>
#endif
#if defined(__GNUC__) || defined(__clang)
#include <boost/type_traits/is_constructible.hpp>
#endif
namespace boost {
template <typename T> struct has_trivial_move_constructor : public integral_constant<bool, BOOST_HAS_TRIVIAL_MOVE_CONSTRUCTOR(T)>{};