Serving the Quantitative Finance Community

 
User avatar
eredhuin
Posts: 3
Joined: July 14th, 2002, 3:00 am

C++ program

July 25th, 2007, 12:35 pm

The reason max and min are causing trouble is because MS decided that its customers wanted a min and max macro more than they wanted a functional STL library. Hey a lot of newbie programmers love the min and max macros. You can insert something moronically nonstandard likeint c = std::_cpp_max(a,b);But I wouldn't bother. I have to echo DCFC's comments. VC6's STL support is a total pile of garbage. Run away before it corrupts you. You will learn only bad things from it and your code will be unportable and broken. Get the free express version instead.
 
User avatar
humtumiit
Topic Author
Posts: 0
Joined: April 28th, 2007, 6:20 pm

C++ program

July 25th, 2007, 3:00 pm

QuoteOriginally posted by: DCFCVC6 is very old, and isn't really even C++ by any current definition.The STL shit issue MJ highlights is the top of a shitberg with lots more problems waiting to sink your code below the surface.It's 2 versions out of date, and real soon will be 3.You can get a free version of VC++ Express 2005 from MS.Can I get VC++ Express 2005 from net and download free ?
 
User avatar
humtumiit
Topic Author
Posts: 0
Joined: April 28th, 2007, 6:20 pm

C++ program

July 25th, 2007, 8:14 pm

Thanks to all for your suggestions.