1// (C) Copyright Beman Dawes 2009 2 3// Use, modification and distribution are subject to the 4// Boost Software License, Version 1.0. (See accompanying file 5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 7// See http://www.boost.org/libs/config for more information. 8 9// MACRO: BOOST_NO_CXX11_HDR_RANDOM 10// TITLE: C++0x header <random> unavailable 11// DESCRIPTION: The standard library does not supply C++0x header <random> 12 13#include <random> 14 15namespace boost_no_cxx11_hdr_random { 16 17int test() 18{ 19 using std::minstd_rand0; 20 using std::mt19937; 21 using std::mt19937_64; 22 using std::ranlux24_base; 23 using std::ranlux48_base; 24 using std::ranlux24; 25 using std::ranlux48; 26 using std::knuth_b; 27 using std::default_random_engine; 28 return 0; 29} 30 31} 32