You are here |
isocpp.org | ||
| | | |
www.cppstories.com
|
|
| | | | 2018 is almost over (just a few hours left in Poland till midnight). As in previous years, I did a summary of many things that happened in the C++ community. This year seems to be marked with a solid progress towards the standardisation of C++20, using more and more C++17 and as always the growth in the community. | |
| | | |
herbsutter.com
|
|
| | | | At CppCon 2018, I gave an update of my Lifetime analysis work that makes common cases of pointer/iterator/range/etc. dangling detectable at compile time (the spec is here in the C++ Core Guidelines GitHub repo). During that talk, we mentioned and demo'd two implementations: as a Visual C++ extension by Kyle Reed and Neil MacIntosh, and... | |
| | | |
www.stroustrup.com
|
|
| | | | ||
| | | |
www.bfilipek.com
|
|
| | Some time ago I covered how to use custom deleters with smart pointers. The basic idea is to specify a dedicated method that will be called when a pointer is released. One logical application of custom deleters might be resource handles like files or the WinApi HANDLE type. Lets see how can we implement such thing. |