os/ossrv/ossrv_pub/boost_apis/boost/functional/hash/set.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
sl@0
     2
//  Copyright Daniel James 2005-2006. Use, modification, and distribution are
sl@0
     3
//  subject to the Boost Software License, Version 1.0. (See accompanying
sl@0
     4
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
sl@0
     6
//  Based on Peter Dimov's proposal
sl@0
     7
//  http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf
sl@0
     8
//  issue 6.18. 
sl@0
     9
sl@0
    10
#if !defined(BOOST_FUNCTIONAL_HASH_SET_HPP)
sl@0
    11
#define BOOST_FUNCTIONAL_HASH_SET_HPP
sl@0
    12
sl@0
    13
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    14
# pragma once
sl@0
    15
#endif
sl@0
    16
sl@0
    17
#warning "boost/functional/hash/set.hpp is deprecated, use boost/functional/hash.hpp instead."
sl@0
    18
#include <boost/functional/hash.hpp>
sl@0
    19
sl@0
    20
#endif
sl@0
    21