One of the few things that still causes me to make mistakes after converting from Java to C++ is string-manipulation.
I HATE char*'s

Ive noticed that in some books they use ostringstream together with string to ease string stuff.
Well in the book im looking at he uses #include <sstream>.
When i try that in VS .NET i get 53(!) build errors related not to my own code but to code found in sstream

Actually this program gets 53 build errors

->
#include <sstream>
int main()
{
return 0;
}
|
(needless to say leaving out the include statement means getting no errors

Anyone know whats wrong?
Edited by - ziphnor on March 2, 2002 12:23:48 PM