Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
CompileFeatures
/
cxx_override.cpp
blob: 3283f2f25f33a61ce02cd33965d9c18040dc7b81 [
file
] [
log
] [
blame
]
struct
A
{
virtual
void
doNothing
()
{}
};
struct
B
:
A
{
void
doNothing
()
override
{}
};