Explore >> Select a destination


You are here

www.cppstories.com
| | www.bfilipek.com
0.5 parsecs away

Travel
| | Variadic Templates from C++11 is probably not a feature that you use on a daily basis. But recently, I've come across one refactoring example where I've decided to give a try and apply variadics. Intro When I was doing some work in some old UI code I've noticed several similar lines of code that looked like that:
| | studiofreya.org
8.0 parsecs away

Travel
| |
| | cppstories.com
5.4 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. Let's see how can we implement such thing.
| | stefansf.de
88.6 parsecs away

Travel
| Non-termination essentially invokes undefined behavior under certain conditions in C as well as C++ which we explore in this article.