I'm trying to write an __int64 to file and I'm coming up with an "ambiguous <<" error, but only on the line that tries to save the __int64. Anyone know how to get around this? Here is a small snippet of the code:
Code:void board::save(char *fileName, __int64 bName) { ofstream outFile; outFile.open(fileName, ios::app); outFile<<" "; outFile<<bName; outFile.close(); }



LinkBack URL
About LinkBacks



).....