Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
d9fcbb06f2e39b5290f22ebc0e2c5076ae026ccd
/
.
/
Tests
/
CompileFeatures
/
cxx_explicit_conversions.cpp
blob: a34128f0d9b554fe9338630b539239372e6c577b [
file
]
class
A
{
int
m_i
;
public
:
explicit
operator
bool
()
{
return
m_i
!=
0
;
}
};