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.

As
The 
This is the day we've been waiting for: The