From c8366ba3a57961044424e0445e4000ba6c0daa10 Mon Sep 17 00:00:00 2001 From: emsr Date: Thu, 23 Feb 2012 02:25:00 +0000 Subject: [PATCH] Add testsuite checks for param_type in the distributions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184501 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/ChangeLog | 43 ++++++++++++++++++++++ .../requirements/typedefs.cc | 3 +- .../binomial_distribution/requirements/typedefs.cc | 3 +- .../cauchy_distribution/requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../discrete_distribution/requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../fisher_f_distribution/requirements/typedefs.cc | 3 +- .../gamma_distribution/requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../normal_distribution/requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../poisson_distribution/requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../requirements/typedefs.cc | 3 +- .../weibull_distribution/requirements/typedefs.cc | 3 +- 21 files changed, 83 insertions(+), 20 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index eee0392bd96..eff982f4a03 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,46 @@ +2012-02-14 Edward Smith-Rowland <3dw4rd@verizon.net> + + * testsuite/26_numerics/random/ + uniform_real_distribution/requirements/typedefs.cc: Check param_type. + * testsuite/26_numerics/random/ + piecewise_constant_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + chi_squared_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + normal_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + uniform_int_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + poisson_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + bernoulli_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + discrete_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + weibull_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + cauchy_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + negative_binomial_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + gamma_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + fisher_f_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + exponential_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + binomial_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + lognormal_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + extreme_value_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + piecewise_linear_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + student_t_distribution/requirements/typedefs.cc: Ditto. + * testsuite/26_numerics/random/ + geometric_distribution/requirements/typedefs.cc: Ditto. + 2012-02-17 Benjamin Kosnik PR libstdc++/50349 diff --git a/libstdc++-v3/testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc index adea635e962..71cffdbb9ba 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::bernoulli_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc index e60fac13c75..1f14321c6eb 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::binomial_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc index 3d80d2ddf0f..933fcde9298 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::cauchy_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc index 271e0fe451a..d4720328ee7 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::chi_squared_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc index 7c5977b3808..ef4739badd6 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-12-03 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::discrete_distribution<> test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc index 7c696e25244..a2357b5a4fb 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::exponential_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc index 8f5d99da494..28fe4063f2e 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::extreme_value_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc index a92727d706b..0a9b2be4798 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::fisher_f_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc index a1d15575e91..35b49762624 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::gamma_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc index cc03ebf0ddb..6e2a4205c55 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::geometric_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc index 2e3ade699c4..4122877674d 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::lognormal_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc index 5b30fda671c..2097da2bf89 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::negative_binomial_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc index 471379d5527..f0c04791ce6 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::normal_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc index c0d458ef6a1..633cd540c30 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-12-03 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::piecewise_constant_distribution<> test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc index cb1d016dce2..1a4f5f66f17 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-12-03 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::piecewise_linear_distribution<> test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc index d6a600293da..2fcf5980542 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::poisson_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc index e090b354200..6ee131f5ba0 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::student_t_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc index 3d584b525c5..fb4075954b0 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::uniform_int_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc index c14182f7230..147bd0da7da 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::uniform_real_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } diff --git a/libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc index 5c8d8e0769b..05cc31f5072 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc @@ -4,7 +4,7 @@ // // 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> // -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -32,4 +32,5 @@ test01() typedef std::weibull_distribution test_type; typedef test_type::result_type result_type; + typedef test_type::param_type param_type; } -- 2.11.4.GIT