Sha256: fb8b82192f91af9b13d00197d5568c52fe64df3478ffd4b750222ca89a934097

Contents?: true

Size: 1.37 KB

Versions: 55

Compression:

Stored size: 1.37 KB

Contents

#ifndef BOOST_MPL_EMPTY_BASE_HPP_INCLUDED
#define BOOST_MPL_EMPTY_BASE_HPP_INCLUDED

// Copyright Aleksey Gurtovoy 2001-2004
//
// Distributed under 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/mpl for documentation.

// $Id$
// $Date$
// $Revision$

#include <boost/mpl/bool.hpp>
#include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp>
#include <boost/mpl/aux_/lambda_support.hpp>

#include <boost/type_traits/integral_constant.hpp>
#include <boost/type_traits/is_empty.hpp>

namespace boost { namespace mpl {

// empty base class, guaranteed to have no members; inheritance from
// 'empty_base' through the 'inherit' metafunction is a no-op - see 
// "mpl/inherit.hpp> header for the details
struct empty_base {};

template< typename T >
struct is_empty_base
    : false_
{
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
    using false_::value;
#endif
};

template<>
struct is_empty_base<empty_base>
    : true_
{
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
    using true_::value;
#endif
};

}}

namespace boost {

template<> struct is_empty< mpl::empty_base >
    : public ::boost::integral_constant<bool,true>
{
public:
    BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(1,is_empty,(mpl::empty_base))
};

}

#endif // BOOST_MPL_EMPTY_BASE_HPP_INCLUDED

Version data entries

55 entries across 55 versions & 2 rubygems

Version Path
passenger-6.0.24 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.23 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.20 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.19 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.18 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.17 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.16 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.15 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.14 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.13 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.12 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.11 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.10 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.9 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.8 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.7 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.6 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.5 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.4 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp
passenger-6.0.3 src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp