ERR: Added missing std::.

This commit is contained in:
Brad King 2003-07-08 00:28:23 -04:00
parent ed273acfa7
commit 6167fa8aa2

View File

@ -193,9 +193,9 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os)
if(i->second.length() > 0) if(i->second.length() > 0)
{ {
#ifdef _WIN32 #ifdef _WIN32
fout = new ofstream(i->second.c_str(), ios::out | ios::binary); fout = new std::ofstream(i->second.c_str(), std::ios::out | std::ios::binary);
#else #else
fout = new ofstream(i->second.c_str(), ios::out); fout = new std::ofstream(i->second.c_str(), std::ios::out);
#endif #endif
if(fout) if(fout)
{ {