BUG: Text dump of documentation should be in ascii mode.

This commit is contained in:
Brad King 2003-07-21 14:58:07 -04:00
parent 1d75f1c9fb
commit 90397af164
1 changed files with 0 additions and 4 deletions

View File

@ -192,11 +192,7 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
std::ostream* s = &os;
if(i->second.length() > 0)
{
#ifdef _WIN32
fout = new std::ofstream(i->second.c_str(), std::ios::out | std::ios::binary);
#else
fout = new std::ofstream(i->second.c_str(), std::ios::out);
#endif
if(fout)
{
s = fout;