Fixed multi-thread bug introduced by the previous change to copy_exception.

This commit is contained in:
Emil Dotchevski
2020-08-14 19:42:29 -07:00
parent 0016f52fba
commit 9bd0584aa9
2 changed files with 5 additions and 3 deletions

View File

@ -110,7 +110,7 @@ void
thread_test()
{
boost::thread_group grp;
for( int i=0; i!=50; ++i )
for( int i=0; i!=100; ++i )
grp.create_thread(&consume);
grp.join_all ();
}