mirror of
https://github.com/boostorg/type_traits.git
synced 2025-07-31 04:57:20 +02:00
Fix Oracle C++11 failure.
This commit is contained in:
@ -13,7 +13,7 @@
|
||||
#include <boost/type_traits/is_pod.hpp>
|
||||
#include <boost/type_traits/is_reference.hpp>
|
||||
|
||||
#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 <boost/type_traits/is_copy_constructible.hpp>
|
||||
#define BOOST_TT_TRIVIAL_CONSTRUCT_FIX && is_copy_constructible<T>::value
|
||||
#else
|
||||
|
Reference in New Issue
Block a user