Use old version of is_copy_constructible with older GCC versions.

This commit is contained in:
jzmaddock
2015-06-16 19:23:37 +01:00
parent 5a4f30208a
commit 57134385f1

View File

@@ -12,7 +12,7 @@
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp>
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_DECLTYPE) && !BOOST_WORKAROUND(BOOST_MSVC, < 1800)
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_DECLTYPE) && !BOOST_WORKAROUND(BOOST_MSVC, < 1800) && !BOOST_WORKAROUND(BOOST_GCC_VERSION, < 40900)
#include <boost/type_traits/is_constructible.hpp>