File tree Expand file tree Collapse file tree 2 files changed +0
-19
lines changed
Expand file tree Collapse file tree 2 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,6 @@ public:
5555 RDataFrame (ULong64_t numEntries);
5656 RDataFrame (std::unique_ptr<ROOT::RDF::RDataSource>, const ColumnNames_t &defaultColumns = {});
5757 RDataFrame (ROOT::RDF::Experimental::RDatasetSpec spec);
58-
59- // Rule of five
60-
61- RDataFrame (const RDataFrame &) = default ;
62- RDataFrame &operator =(const RDataFrame &) = default ;
63- RDataFrame (RDataFrame &&) = default ;
64- RDataFrame &operator =(RDataFrame &&) = default ;
65- ~RDataFrame ();
6658};
6759
6860namespace RDF {
Original file line number Diff line number Diff line change @@ -2226,17 +2226,6 @@ RDataFrame::RDataFrame(ROOT::RDF::Experimental::RDatasetSpec spec)
22262226{
22272227}
22282228
2229- RDataFrame::~RDataFrame ()
2230- {
2231- // If any node of the computation graph associated with this RDataFrame
2232- // declared code to jit, we need to make sure the compilation actually
2233- // happens. For example, a jitted Define could have been booked but
2234- // if the computation graph is not actually run then the code of the
2235- // Define node is not jitted. This in turn would cause memory leaks.
2236- // See https://github.com/root-project/root/issues/15399
2237- fLoopManager ->Jit ();
2238- }
2239-
22402229namespace RDF {
22412230namespace Experimental {
22422231
You can’t perform that action at this time.
0 commit comments