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 ce5d79aCopy full SHA for ce5d79a
tree/ntuple/test/StreamerField.hxx
@@ -69,18 +69,22 @@ class IgnoreUnsplitComment {
69
struct PolyBase {
70
virtual ~PolyBase() {}
71
int x;
72
+ ClassDef(PolyBase, 3);
73
};
74
75
struct PolyA : public PolyBase {
76
int a;
77
+ ClassDefOverride(PolyA, 3);
78
79
80
struct PolyB : public PolyBase {
81
int b;
82
+ ClassDefOverride(PolyB, 3);
83
84
85
struct PolyContainer {
86
std::unique_ptr<PolyBase> fPoly;
87
+ ClassDefNV(PolyContainer, 3);
88
89
90
template <typename T>
0 commit comments