mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
BUG: fix to compile on hp with aCC
This commit is contained in:
@@ -80,7 +80,7 @@ public:
|
||||
/**
|
||||
* Allow a test for whether the file is open.
|
||||
*/
|
||||
operator bool() { return m_Stream.is_open(); }
|
||||
operator bool() { return static_cast<bool>(m_Stream); }
|
||||
|
||||
/**
|
||||
* Close the file stream. This will cause the copy-if-different to the
|
||||
|
||||
Reference in New Issue
Block a user