From d66cb6e9051aebb0fd37a6d84bf24440c08505da Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 17 Jun 2015 19:29:25 +0100 Subject: [PATCH] Fix Oracle C++11 failure. --- include/boost/type_traits/has_trivial_copy.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/has_trivial_copy.hpp b/include/boost/type_traits/has_trivial_copy.hpp index d7e1dee..ef9c290 100644 --- a/include/boost/type_traits/has_trivial_copy.hpp +++ b/include/boost/type_traits/has_trivial_copy.hpp @@ -13,7 +13,7 @@ #include #include -#if (defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 409)) || defined(BOOST_CLANG) +#if (defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 409)) || defined(BOOST_CLANG) || (defined(__SUNPRO_CC) && defined(BOOST_HAS_TRIVIAL_COPY)) #include #define BOOST_TT_TRIVIAL_CONSTRUCT_FIX && is_copy_constructible::value #else