BUG: Text dump of documentation should be in ascii mode.
This commit is contained in:
parent
1d75f1c9fb
commit
90397af164
|
@ -192,11 +192,7 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
|
||||||
std::ostream* s = &os;
|
std::ostream* s = &os;
|
||||||
if(i->second.length() > 0)
|
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);
|
fout = new std::ofstream(i->second.c_str(), std::ios::out);
|
||||||
#endif
|
|
||||||
if(fout)
|
if(fout)
|
||||||
{
|
{
|
||||||
s = fout;
|
s = fout;
|
||||||
|
|
Loading…
Reference in New Issue