File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ public:
175
175
RNTupleInspector &operator =(const RNTupleInspector &other) = delete ;
176
176
RNTupleInspector (RNTupleInspector &&other) = delete;
177
177
RNTupleInspector &operator =(RNTupleInspector &&other) = delete ;
178
- ~RNTupleInspector () = default ;
178
+ ~RNTupleInspector ();
179
179
180
180
// ///////////////////////////////////////////////////////////////////////////
181
181
// / \brief Create a new RNTupleInspector.
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ ROOT::Experimental::RNTupleInspector::RNTupleInspector(
41
41
CollectFieldTreeInfo (fDescriptor ->GetFieldZeroId ());
42
42
}
43
43
44
+ // NOTE: outlined to avoid including RPageStorage in the header
45
+ ROOT::Experimental::RNTupleInspector::~RNTupleInspector () = default ;
46
+
44
47
void ROOT::Experimental::RNTupleInspector::CollectColumnInfo ()
45
48
{
46
49
fCompressedSize = 0 ;
You can’t perform that action at this time.
0 commit comments