I have a strange bug in vs2008.
ostream open fails when called in the following manner:
ofstream filestr;
filestr.open((filename.c_str()),ios::in|ios::out);
when called like this it works without a hitch:
ofstream filestr;
filestr.open("blahblah.txt",ios::in|ios::out);
Any ideas?
Thanks