summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-07-21 18:58:07 (GMT)
committerBrad King <brad.king@kitware.com>2003-07-21 18:58:07 (GMT)
commit90397af164b43961e8f60698ec5aff35f2da9852 (patch)
treedcb1afd3396095d219ff667195635e5ca1eb92b0
parent1d75f1c9fbcae8686f75149275543842a26cb3d4 (diff)
downloadCMake-90397af164b43961e8f60698ec5aff35f2da9852.zip
CMake-90397af164b43961e8f60698ec5aff35f2da9852.tar.gz
CMake-90397af164b43961e8f60698ec5aff35f2da9852.tar.bz2
BUG: Text dump of documentation should be in ascii mode.
-rw-r--r--Source/cmDocumentation.cxx4
1 files changed, 0 insertions, 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;