I've only been using this site for a short time, but I'm already a huge fan. One of the features of this site I like, is that there is attribution about when a feature was added to the language by being flagged as C++11, C++14, etc.
I have recently been looking through Bjarne Stroustrup's "C++ Programming Language 3rd Edition" published in 1999. I noticed in this edition that there is no reference to "Long Long", or the "LL" constant suffix modifier. This site correctly lists these types--(for example on the http://www.cplusplus.com/doc/tutorial/constants/) page but does not give any attribution about when they were added to the language, which presumably happened after the 1998 version. It would be nice if it could be noted when these changes were added. Thoughts?
That is one thing I have always liked about this site as well. Cppreference has been doing the same for a little while as well, now. Both sites fall short of a more complete history of language features.
But to be fair, neither site professes to have that kind of information.
“Long long” was officially introduced by C++11. It has long before been a compiler extension on various systems.
@FurryGuy
Methinks you missed punksheep's intent: he wishes to know why the date of an added feature is useful.
The reason is that sometimes (often, even) you have to deal with legacy systems, and knowing when a feature was implemented by not just the standard but by specific compilers is necessary.