We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8fd01 commit 83a88f2Copy full SHA for 83a88f2
tree/ntuple/test/StreamerField.hxx
@@ -67,15 +67,17 @@ class IgnoreUnsplitComment {
67
// Test streamer field with polymorphic type
68
69
struct PolyBase {
70
- virtual ~PolyBase() {}
+ virtual ~PolyBase() = default;
71
int x;
72
};
73
74
struct PolyA : public PolyBase {
75
+ ~PolyA() override = default;
76
int a;
77
78
79
struct PolyB : public PolyBase {
80
+ ~PolyB() override = default;
81
int b;
82
83
0 commit comments