[1.44][beta] Patch for missing header in boost/random/subtract_with_carry.hpp

Hello, following is a small patch to fix a compilation issue with boost/random/subtract_with_carry.hpp: ------------------------------------------------------------------------------------- --- a/boost/random/subtract_with_carry.hpp +++ b/boost/random/subtract_with_carry.hpp @@ -30,7 +30,7 @@ #include <boost/random/detail/seed.hpp> #include <boost/random/detail/operators.hpp> #include <boost/random/linear_congruential.hpp> - +#include <boost/random/detail/generator_seed_seq.hpp> namespace boost { namespace random { ------------------------------------------------------------------------------------- That issue has been spotted by Fedora packagers in the building of the QuantLib library: https://bugzilla.redhat.com/show_bug.cgi?id=621631 Could someone add that patch to the 1.44 branch? Thanks in advance Best Regards Denis

AMDG Denis Arnaud wrote:
following is a small patch to fix a compilation issue with boost/random/subtract_with_carry.hpp: -------------------------------------------------------------------------------------
--- a/boost/random/subtract_with_carry.hpp
+++ b/boost/random/subtract_with_carry.hpp @@ -30,7 +30,7 @@ #include <boost/random/detail/seed.hpp> #include <boost/random/detail/operators.hpp> #include <boost/random/linear_congruential.hpp>
- +#include <boost/random/detail/generator_seed_seq.hpp>
namespace boost { namespace random {
This file shouldn't be in the release branch at all. I know I didn't merge it, and it is part of a number of changes that aren't ready to be released yet. In Christ, Steven Watanabe

On Fri, Aug 6, 2010 at 3:53 PM, Steven Watanabe <watanabesj@gmail.com> wrote:
AMDG
Denis Arnaud wrote:
following is a small patch to fix a compilation issue with boost/random/subtract_with_carry.hpp:
-------------------------------------------------------------------------------------
--- a/boost/random/subtract_with_carry.hpp
+++ b/boost/random/subtract_with_carry.hpp @@ -30,7 +30,7 @@ #include <boost/random/detail/seed.hpp> #include <boost/random/detail/operators.hpp> #include <boost/random/linear_congruential.hpp>
- +#include <boost/random/detail/generator_seed_seq.hpp>
namespace boost { namespace random {
This file shouldn't be in the release branch at all. I know I didn't merge it, and it is part of a number of changes that aren't ready to be released yet.
And boost/random/detail/generator_seed_seq.hpp doesn't in fact appear to be in either the release branch or the distribution packages. --Beman
participants (3)
-
Beman Dawes
-
Denis Arnaud
-
Steven Watanabe