diff options
author | Brad King <brad.king@kitware.com> | 2003-07-21 18:58:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-07-21 18:58:07 (GMT) |
commit | 90397af164b43961e8f60698ec5aff35f2da9852 (patch) | |
tree | dcb1afd3396095d219ff667195635e5ca1eb92b0 /Source/cmDocumentation.cxx | |
parent | 1d75f1c9fbcae8686f75149275543842a26cb3d4 (diff) | |
download | CMake-90397af164b43961e8f60698ec5aff35f2da9852.zip CMake-90397af164b43961e8f60698ec5aff35f2da9852.tar.gz CMake-90397af164b43961e8f60698ec5aff35f2da9852.tar.bz2 |
BUG: Text dump of documentation should be in ascii mode.
Diffstat (limited to 'Source/cmDocumentation.cxx')
-rw-r--r-- | Source/cmDocumentation.cxx | 4 |
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; |