learning c++
So I'm learning c++. I wrote a couple small projects in it 20 plus years ago but reading the Minetest code has been difficult to say the least. Anyway, one of the interesting things I discovered in that the new C++ standard, there is a thing called smart pointers (shared pointers and unique pointers) and these things are in the standard library. They basically are classes that wrap pointers so that you don't have to worry about deleting them when they go out of scope. It removes a lot of the administrative code you have to do when cleaning long lived objects off of the heap/free storage. I'm guessing this is too new for Minetest to use but it seems really cool. Does anyone know if minetest uses C++11 and smart pointers?