The release candidate version of Visual Studio was announced/released yesterday during the build conference.
https://www.visualstudio.com/en-u...s/visual-studio-2015-downloads-vs
The release notes has many C++ improvements, including better support for modern C++ and a crazy amount of bug fixes:
https://www.visualstudio.com/news/vs2015-vs
Perhaps it would be a good idea for Casey to take a look at the changes and update.
One of the things listed there reminded me immediately of a problem with sizeof Casey had to circumvent:
"Extended sizeof The size of a class or struct member variable can now be determined without an instance of the class or struct by using sizeof(). C++11"
And I love this one. So good:
"User-Defined Literals (UDLs) Meaningful suffixes can now be appended to numeric and string literals to give them specific semantics. The compiler interprets suffixed literals as calls to the appropriate UDL-operator. C++11"
I'd kill to have user defined literals in C#. Makes the code so more readable.
Also, there seems to be a lot of optimization too, decreasing compilation times, etc.