usefulcat
usefulcat
I submitted a PR to fix this, see PR "Bug fix for #35".
I would upvote this 10x if I could. I have long theorized, but never had the chance/taken the time to prove, that using exceptions to report uncommon conditions can be...
Seems like this could have some overlap with #25 (throwing exceptions from destructors)
How sure are you that thread sanitizer is detecting an actual problem here? It looks like that member variable, _new_thread_context, gets written to every time a new thread is created,...
I'm not able to reproduce this. Using boost 1.70 and gcc 9.1, the following test has no failures: ``` BOOST_AUTO_TEST_CASE(cb_full_test) { boost::circular_buffer q; q.set_capacity(100); BOOST_REQUIRE_EQUAL(100u, q.capacity()); for (int i =...