Sha256: d61816c156bf91dbc3ea250b802eed5709c875a6bb440a203f919ddcd02c02c1

Contents?: true

Size: 848 Bytes

Versions: 16

Compression:

Stored size: 848 Bytes

Contents

//  (C) Copyright 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.

#ifndef BOOST_TT_IS_COMPOUND_HPP_INCLUDED
#define BOOST_TT_IS_COMPOUND_HPP_INCLUDED

#include <boost/type_traits/is_fundamental.hpp>

namespace boost {

#if defined( BOOST_CODEGEARC )
   template <class T> struct is_compound : public integral_constant<bool, __is_compound(T)> {};
#else
   template <class T> struct is_compound : public integral_constant<bool, ! ::boost::is_fundamental<T>::value> {};
#endif

} // namespace boost

#endif // BOOST_TT_IS_COMPOUND_HPP_INCLUDED

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
passenger-6.0.25 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.24 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.23 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.20 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.19 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.18 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.17 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.16 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.15 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.14 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.13 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.12 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.11 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.10 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.9 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp
passenger-6.0.8 src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp