C++11 Final Override -- 741MHz
A good article posted last year and making the rounds again this week:
C++11 Final Override
by 741MHz
From the article:
C++11 introduces two important keywords in relation to polymorphism and inheritance — the
overrideandfinal. Using those keywords should become a habit of any C++ developer. It is worth using every time except when writing a base class. This will make the code clear, maintainable, and potentially save hours that would have been otherwise wasted chasing an error in debugger.

C++ is quietly becoming a language of choice for cross-platform mobile apps, because it's the only modern language that can target iOS, Android, and more with the same source code.
Scott Meyers' highly anticipated new book Effective Modern C++ is on the way:
Part 3 of Vadim's experience report about using Boost's graph support in an existing game app: