mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 15:30:40 +00:00
11 lines
89 B
C++
11 lines
89 B
C++
|
|
class A
|
|
{
|
|
int m_i;
|
|
public:
|
|
explicit operator bool()
|
|
{
|
|
return m_i != 0;
|
|
}
|
|
};
|