From dca27f8b3d074fe38e7e8b1ec5034d6d0e4ba80a Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 17 Jun 2015 19:13:19 +0100 Subject: [PATCH] Fix Oracle failure - needs to filter result through is_constructible. --- include/boost/type_traits/has_trivial_constructor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/has_trivial_constructor.hpp b/include/boost/type_traits/has_trivial_constructor.hpp index 3fca9bf..06c137d 100644 --- a/include/boost/type_traits/has_trivial_constructor.hpp +++ b/include/boost/type_traits/has_trivial_constructor.hpp @@ -25,7 +25,7 @@ #endif -#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_CONSTRUCTOR)) #include #define BOOST_TT_TRIVIAL_CONSTRUCT_FIX && is_default_constructible::value #else