comparison DEPENDENCIES/generic/include/boost/random/detail/seed.hpp @ 101:c530137014c0

Update Boost headers (1.58.0)
author Chris Cannam
date Mon, 07 Sep 2015 11:12:49 +0100
parents 2665513ce2d3
children
comparison
equal deleted inserted replaced
100:793467b5e61c 101:c530137014c0
5 * accompanying file LICENSE_1_0.txt or copy at 5 * accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt) 6 * http://www.boost.org/LICENSE_1_0.txt)
7 * 7 *
8 * See http://www.boost.org for most recent version including documentation. 8 * See http://www.boost.org for most recent version including documentation.
9 * 9 *
10 * $Id: seed.hpp 71018 2011-04-05 21:27:52Z steven_watanabe $ 10 * $Id$
11 */ 11 */
12 12
13 #ifndef BOOST_RANDOM_DETAIL_SEED_HPP 13 #ifndef BOOST_RANDOM_DETAIL_SEED_HPP
14 #define BOOST_RANDOM_DETAIL_SEED_HPP 14 #define BOOST_RANDOM_DETAIL_SEED_HPP
15 15
19 // templated constructor. So does Borland. 19 // templated constructor. So does Borland.
20 #if !defined(BOOST_NO_SFINAE) && !defined(__SUNPRO_CC) && !defined(__BORLANDC__) 20 #if !defined(BOOST_NO_SFINAE) && !defined(__SUNPRO_CC) && !defined(__BORLANDC__)
21 21
22 #include <boost/utility/enable_if.hpp> 22 #include <boost/utility/enable_if.hpp>
23 #include <boost/type_traits/is_arithmetic.hpp> 23 #include <boost/type_traits/is_arithmetic.hpp>
24 #include <boost/mpl/bool.hpp>
24 25
25 namespace boost { 26 namespace boost {
26 namespace random { 27 namespace random {
27 namespace detail { 28 namespace detail {
28 29