2
0
mirror of https://github.com/boostorg/random.git synced 2026-02-26 17:02:15 +00:00

Merge macro changes for Boost.Random; no functionality change

[SVN r79530]
This commit is contained in:
Marshall Clow
2012-07-15 14:34:35 +00:00
parent fbee3952c0
commit 2e7e6cf218
8 changed files with 18 additions and 18 deletions

View File

@@ -51,7 +51,7 @@ BOOST_AUTO_TEST_CASE(test_constructors) {
CHECK_SEQUENCE(dist.intervals(), list_of(0.0)(1.0));
CHECK_SEQUENCE(dist.densities(), list_of(1.0)(1.0));
#ifndef BOOST_NO_0X_HDR_INITIALIZER_LIST
#ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
boost::random::piecewise_linear_distribution<> dist_il = {
{ 99, 103, 107, 111, 115 },
gen()
@@ -143,7 +143,7 @@ BOOST_AUTO_TEST_CASE(test_param) {
BOOST_CHECK(param != param_default);
BOOST_CHECK(!(param == param_default));
#ifndef BOOST_NO_0X_HDR_INITIALIZER_LIST
#ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
boost::random::piecewise_linear_distribution<>::param_type parm_il = {
{ 99, 103, 107, 111, 115 },
gen()