Explore >> Select a destination


You are here

isocpp.org
| | www.cppstories.com
10.7 parsecs away

Travel
| | 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
10.6 parsecs away

Travel
| | 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
18.0 parsecs away

Travel
| |
| | www.bfilipek.com
85.0 parsecs away

Travel
| 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.