Tales of C++ - Episode Six: Boollocks--K-ballo
Tales of C++, Episode 6:
Boollocks
by K-Ballo
From the article:
In the beginning there was no
bool. And C++ said "let there bebool", and there wasbool...The Boolean data type is an integral type with only two values:
trueandfalse, intended to represent the truth values of logic and Boolean algebra. With only two values, what can possibly go wrong?

Continuing Koenig's series on move semantics:
I've been looking at the BlackBerry 10 NDK the last weeks, and did write about it to share some thoughts and results.
Danny Kalev wrote a nice article yesterday about a new C++ feature -- actually, two related C++14 features -- that were just added to the draft Standard in April and will be coming to real compilers in the near future.
A nice piece of writing on a C++11 feature:
Here is a nicely accessible description of synchronization in the C++ memory model:
On CRTP with multi-level inheritance, cloning, and the constructor forwarding problem.