|
|
|
|
|
by pnako
2349 days ago
|
|
'A tour of C++' by Stroustrup is a good overview of modern C++. I recently got back into C++ after big hiatus, just like you, and for me the things that changed are: - definitely the things you mentioned: much safer constructs (unique_ptr, move semantics)
- the use of CMake as a build system
- much less focus on arcane templates and libraries like Boost
- new tools like sanitizers
- new IDEs (CLion)
|
|
Even if CMake is basically a defacto standard, I have a CMake trauma... Do you have experience with things like Scons/Ninja?
For the sanitizers, I had a look at the one from google: https://github.com/google/sanitizers Did you work with any of those, or was it something else?
I definitely have my eyes on CLion, I'll have to convince my University to get a licence as they are already bulk paying for MS Visual Studio (but that one does not work on linux...)