Fix accidental trunction from int to bool.
Context: #14086 (comment)
Fix accidental trunction from int to bool.
Context: #14086 (comment)
53 | @@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE(manythreads) 54 | 55 | boost::mutex counterMutex[10]; 56 | int counter[10] = { 0 }; 57 | - FastRandomContext rng(42); 58 | + FastRandomContext rng(true);
please use named arguments for literal primitive types. {/* fDeterministic */ true}
Good point! Fixed! :-)
@MarcoFalke Thanks for reviewing. Feedback addressed. Please re-review :-)