| |
| // (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard |
| // Hinnant & John Maddock 2000. |
| // Use, modification and distribution are subject to the Boost Software License, |
| // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| // http://www.boost.org/LICENSE_1_0.txt). |
| // |
| // See http://www.boost.org/libs/type_traits for most recent version including documentation. |
| |
| |
| // Some fixes for is_array are based on a newsgroup posting by Jonathan Lundquist. |
| |
| |
| #ifndef BOOST_TT_IS_ARRAY_HPP_INCLUDED |
| #define BOOST_TT_IS_ARRAY_HPP_INCLUDED |
| |
| #include <boost/type_traits/config.hpp> |
| |
| |
| #include <cstddef> |
| |
| // should be the last #include |
| #include <boost/type_traits/detail/bool_trait_def.hpp> |
| |
| namespace boost { |
| |
| #if defined( __CODEGEARC__ ) |
| BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_array,T,__is_array(T)) |
| #else |
| BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_array,T,false) |
| #if !defined(BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T[N],true) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const[N],true) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T volatile[N],true) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const volatile[N],true) |
| #if !BOOST_WORKAROUND(__BORLANDC__, < 0x600) && !defined(__IBMCPP__) && !BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x840)) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T[],true) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T const[],true) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T volatile[],true) |
| BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T const volatile[],true) |
| #endif |
| #endif |
| |
| #endif |
| |
| } // namespace boost |
| |
| #include <boost/type_traits/detail/bool_trait_undef.hpp> |
| |
| #endif // BOOST_TT_IS_ARRAY_HPP_INCLUDED |