COMP: fix to compile on VS 8
This commit is contained in:
parent
f4ab553178
commit
adffd10cce
|
@ -81,7 +81,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
operator bool() const { return this->handle_ != INVALID_HANDLE_VALUE; }
|
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_; }
|
operator HANDLE() const { return this->handle_; }
|
||||||
private:
|
private:
|
||||||
HANDLE handle_;
|
HANDLE handle_;
|
||||||
|
|
Loading…
Reference in New Issue