I am using VS2012 with c++98. I found out by doing this:
cout << __cplusplus;
that showed me "199711L" , but I want to use features that are specific to c++14. (I know that there are reasons why __cplusplus is shwing this(according to this) and I have access to some features of c++11 like smart pointers)
VS has c++11 by default, but how can I enable c++14 for example??