Sfoglia il codice sorgente

BUG: Text dump of documentation should be in ascii mode.

Brad King 22 anni fa
parent
commit
90397af164
1 ha cambiato i file con 0 aggiunte e 4 eliminazioni
  1. 0 4
      Source/cmDocumentation.cxx

+ 0 - 4
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;