Mar 5, 2019 at 11:04am
Is there anything you want us to discuss or is this just a note to people that still use pre-C++11 compilers?
Mar 5, 2019 at 11:47am
vector<bool> x( n, true );
or
valarray<bool> x( true, n );
No idea why someone chose to make those a different way round.
Last edited on Mar 5, 2019 at 11:48am