Lynn McGuire
2015-11-16 22:12:26 UTC
I just upgraded us from MSVS 2005 to MSVS 2012. The worst problem that I had was that we wrote our primary C++ code back in the dark
ages before std:: for the STL. So, we were using "using namespace std;". When I started compiling in MSVS 2012, I had a conflict
between our tuple methods and the std::tuple method. So, I bit the bullet and put std:: in all of our STL objects.
BTW, I also looked at MSVS 2013 and ran into the fact that it only supports UNICODE and has dropped support for ASCII. Since our
product started at Window 1.0, we never has made UNICODE a priority. Looks like we will need to do that some day. I suspect that we
will move to UTF-8, not UTF-16 as we cannot afford the double byte space for each character.
https://en.wikipedia.org/wiki/UTF-8
Thanks,
Lynn
ages before std:: for the STL. So, we were using "using namespace std;". When I started compiling in MSVS 2012, I had a conflict
between our tuple methods and the std::tuple method. So, I bit the bullet and put std:: in all of our STL objects.
BTW, I also looked at MSVS 2013 and ran into the fact that it only supports UNICODE and has dropped support for ASCII. Since our
product started at Window 1.0, we never has made UNICODE a priority. Looks like we will need to do that some day. I suspect that we
will move to UTF-8, not UTF-16 as we cannot afford the double byte space for each character.
https://en.wikipedia.org/wiki/UTF-8
Thanks,
Lynn