mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-27 17:39:51 -05:00
COMP: fix to compile on VS 8
This commit is contained in:
@@ -81,7 +81,7 @@ public:
|
||||
}
|
||||
}
|
||||
operator bool() const { return this->handle_ != INVALID_HANDLE_VALUE; }
|
||||
operator !() const { return this->handle_ == INVALID_HANDLE_VALUE; }
|
||||
bool operator !() const { return this->handle_ == INVALID_HANDLE_VALUE; }
|
||||
operator HANDLE() const { return this->handle_; }
|
||||
private:
|
||||
HANDLE handle_;
|
||||
|
||||
Reference in New Issue
Block a user