COMP: Fix new cmGeneratedFileStream for MSVC.

This commit is contained in:
Brad King
2004-11-03 07:27:44 -05:00
parent d46d8df0ed
commit e34207c1f0
3 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ cmGeneratedFileStream::cmGeneratedFileStream(const char* name,
bool copy_if_different,
bool quiet):
cmGeneratedFileStreamBase(name, copy_if_different),
std::ofstream(m_TempName.c_str())
Stream(m_TempName.c_str())
{
// Check if the file opened.
if(!*this && !quiet)
@@ -49,7 +49,7 @@ cmGeneratedFileStream::~cmGeneratedFileStream()
// stream will be destroyed which will close the temporary file.
// Finally the base destructor will be called to replace the
// destination file.
m_Okay = *this;
m_Okay = (*this)?true:false;
}
//----------------------------------------------------------------------------