mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
BUG: Text dump of documentation should be in ascii mode.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user