Is there a reference somewhere concerning all the C++ extensions the VC9 (SP1) compiler has?
Examples would be the __declspec stuff, variadic macros and the compiler intrinsics, although there are also some less noticeable ones like being able to have template function specialisations at class scope, whereas apparently the standard says they cant be (Previous Question).
This includes whatever parts of C99, TR1, C++0X, etc. which are supported. Information regarding VC10 would b e useful as well, I know it has some parts of C++0X, but what else?
I've found bits and pieces on MSDN, but not an actual list which makes it impossible unless I know the name of the extension, or at least enough information regarding it (i.e. what it does).