Commit fc095262 authored by Dominik Charousset's avatar Dominik Charousset

Fix non-virtual-dtor warning

parent 55530208
...@@ -115,6 +115,9 @@ struct test_empty_non_pod { ...@@ -115,6 +115,9 @@ struct test_empty_non_pod {
virtual void foo() { virtual void foo() {
// nop // nop
} }
virtual ~test_empty_non_pod() {
// nop
}
bool operator==(const test_empty_non_pod&) const { bool operator==(const test_empty_non_pod&) const {
return false; return false;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment