|
|
|
|
|
by flohofwoe
4166 days ago
|
|
It is a fair question given the fact that Visual Studio 2013 doesn't even support basic C++11 features like constexpr. When doing multi-platform C++11 work the code usually must be dumbed down a lot if it needs to compile also in VStudio, e.g.: - can't use many of the new initializer mechanisms in the class declaration (initializer lists, etc...) - no constexpr - std::chrono high resolution click isn't actually high resolution but only has millisecond accuracy Complete list of missing C++11 features up to VS2013 is here: http://msdn.microsoft.com/en-us/library/hh567368.aspx Microsoft should first complete their C++11 support before moving on to C++14, otherwise it will probably never get fixed. Visual Studio is a fine IDE, but the C++ compiler lags behind quite a bit. |
|