C++ standard libraries

Started by
3 comments, last by Telastyn 18 years, 8 months ago
Does the C++ standard libraries comes with the visual c++ 2005 beta 2 ??? If not, where can I get it (is it for free ???)
There is nothing that can't be solved. Just people that can't solve it. :)
Advertisement
It should be included in the IDE.
But you can get a free STL implementation from www.stlport.org
I tried copying the include and liberaries files from the previous visual c++ (version 6) but when I compiled my project I got many errors about those libraries....

Is there a newer version for the visual c++ 2005 beta 2 ???

P.S.

Upgrading to c++ 2005 beta 2 is frustrating !!!
There is nothing that can't be solved. Just people that can't solve it. :)
Quote:Original post by DesignerX
I tried copying the include and liberaries files from the previous visual c++ (version 6) but when I compiled my project I got many errors about those libraries....


That is no surprise, VC++ 6.0 has poor standard compliance therefore its implementation of the standard library has issues. VC++ 2k5 express beta already comes with an imp of the standard library and its millions times better than VC++ 6.0.
Note that some of the header names have likely changed between the two versions, and that might be the source of the problems. Without seeing any errors, it's hard to tell.

This topic is closed to new replies.

Advertisement