Sha256: 4f4abaa2cf5156052c42c50c5e5643536fa1644c055699ccd0ecebe6b73135ea

Contents?: true

Size: 943 Bytes

Versions: 5

Compression:

Stored size: 943 Bytes

Contents

#ifndef BOOST_MPL_MULTISET_AUX_INSERT_IMPL_HPP_INCLUDED
#define BOOST_MPL_MULTISET_AUX_INSERT_IMPL_HPP_INCLUDED

// Copyright Aleksey Gurtovoy 2003-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.

// $Source: /cvsroot/boost/boost/boost/mpl/multiset/aux_/insert_impl.hpp,v $
// $Date: 2004/09/02 15:41:02 $
// $Revision: 1.2 $

#include <boost/mpl/multiset/aux_/item.hpp>
#include <boost/mpl/multiset/aux_/tag.hpp>
#include <boost/mpl/insert_fwd.hpp>

namespace boost { namespace mpl {

template<>
struct insert_impl< aux::multiset_tag >
{
    template< typename Set, typename Key, typename unused_ > struct apply
    {
        typedef ms_item<Key,Set> type;
    };
};

}}

#endif // BOOST_MPL_MULTISET_AUX_INSERT_IMPL_HPP_INCLUDED

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
passenger-1.0.1 ext/boost/mpl/multiset/aux_/insert_impl.hpp
passenger-1.0.2 ext/boost/mpl/multiset/aux_/insert_impl.hpp
passenger-1.0.3 ext/boost/mpl/multiset/aux_/insert_impl.hpp
passenger-1.0.4 ext/boost/mpl/multiset/aux_/insert_impl.hpp
passenger-1.0.5 ext/boost/mpl/multiset/aux_/insert_impl.hpp