Motivation: reason why I'm considering it is that my genius project manager thinks that boost is another dependency and that it is horrible because "you depend on it"(I tried explaining the quality of boost, then gave up after some time :( ). Smaller reason why I would like to do it is that I would like to learn c++11 features, because people will start writing code in it. So:
- Is there a 1:1 mapping between
#include<thread> #include<mutex>
and boost equivalents? - Would you consider a good idea to replace boost stuff with c++11
stuff. My usage is primitive, but are there examples when std doesnt offer what boost does? Or (blasphemy) vice versa?
P.S. I use GCC so headers are there.