The Surprising Case You write a simple C++ class. You want to be explicit, so you define a copy constructor but delete the move constructor. You expec… ...more
What is SIOF? The Static Initialization Order Fiasco (SIOF) is a bug that appears when one translation unit initializes a global object that depends o… ...more
All kinds of sorting algorithms, re-visited! Easiest Bubble Sort Bubble sort is the easiest sorting algorithm; it can be considered an inferior versio… ...more
Recent