From 90397af164b43961e8f60698ec5aff35f2da9852 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 21 Jul 2003 14:58:07 -0400 Subject: BUG: Text dump of documentation should be in ascii mode. --- Source/cmDocumentation.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index d8bc34e..1571406 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -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; -- cgit v0.12