I just installed Visual Studio 2015 RC Pro because I wanted to use c++11's std::to_string but it still doesn't seem to be 11...
std::cout << _cplusplus << std::endl;
Gives me 199711. Is VS 2015 RC not supposed to have 11? Or am I doing something wrong? Help appreciated.
Edit: it seems it isn't extremely clear what I want, so here's more info:
I want to use to_string, a member of std in c++11 which turns an int (in this case) into a string.
std::to_string(5);
gives me an error: "std has no member to_string"