1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-07-03 02:26:24 +08:00
CMake/Tests/CompileFeatures/cxx_explicit_conversions.cpp
2014-04-08 11:05:55 +02:00

11 lines
89 B
C++

class A
{
int m_i;
public:
explicit operator bool()
{
return m_i != 0;
}
};