Skip to content

Commit 55cd181

Browse files
committed
[ntuple] outline dtor of RNTupleInspector
1 parent 10d2450 commit 55cd181

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tree/ntupleutil/v7/inc/ROOT/RNTupleInspector.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public:
175175
RNTupleInspector &operator=(const RNTupleInspector &other) = delete;
176176
RNTupleInspector(RNTupleInspector &&other) = delete;
177177
RNTupleInspector &operator=(RNTupleInspector &&other) = delete;
178-
~RNTupleInspector() = default;
178+
~RNTupleInspector();
179179

180180
/////////////////////////////////////////////////////////////////////////////
181181
/// \brief Create a new RNTupleInspector.

tree/ntupleutil/v7/src/RNTupleInspector.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ ROOT::Experimental::RNTupleInspector::RNTupleInspector(
4141
CollectFieldTreeInfo(fDescriptor->GetFieldZeroId());
4242
}
4343

44+
// NOTE: outlined to avoid including RPageStorage in the header
45+
ROOT::Experimental::RNTupleInspector::~RNTupleInspector() = default;
46+
4447
void ROOT::Experimental::RNTupleInspector::CollectColumnInfo()
4548
{
4649
fCompressedSize = 0;

0 commit comments

Comments
 (0)