Tagged Questions
1
vote
1answer
673 views
Release boost::mutex from destructor
As std::vector isn't thread-safe, I was trying to build a very simple encapsulation around it which makes it thread-safe.
This works quite well, but there's one little problem.
When the instance of ...