Boost C++ Libraries: Ticket #684: Compilation error when using additive_combine::seed https://svn.boost.org/trac10/ticket/684 <pre class="wiki">I've found a compilation error in one of the adaptive_combine::seed() methods - void seed(typename MLCG1::result_type seed1, typename MLCG2::result_type seed2) { _mlcg1(seed1); _mlcg2(seed2); } should really be something like void seed(typename MLCG1::result_type seed1, typename MLCG2::result_type seed2) { _mlcg1.seed(seed1); _mlcg2.seed(seed2); } shouldn't it? Making this change fixes the problem. I have included a patch that performs this fix. </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/684 Trac 1.4.3 jmaurer Wed, 19 Jul 2006 21:55:47 GMT status changed https://svn.boost.org/trac10/ticket/684#comment:1 https://svn.boost.org/trac10/ticket/684#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">closed</span> </li> </ul> <pre class="wiki">Logged In: YES user_id=53943 Yes, indeed. Fixed in CVS HEAD. </pre> Ticket