Extend nullptr_t workaround to Intel C++.

This commit is contained in:
Peter Dimov
2014-08-09 00:26:00 +03:00
parent 6b562cb5b1
commit 7b71068b52

View File

@ -26,7 +26,7 @@ namespace boost
namespace detail
{
#if defined( __clang__ ) && !defined( _LIBCPP_VERSION ) && !defined( BOOST_NO_CXX11_DECLTYPE )
#if !defined( BOOST_NO_CXX11_DECLTYPE ) && ( ( defined( __clang__ ) && !defined( _LIBCPP_VERSION ) ) || defined( __INTEL_COMPILER ) )
typedef decltype(nullptr) sp_nullptr_t;