Skip to content

Commit

Permalink
[rdf] Remove RResultHandle::GetResultPtr():
Browse files Browse the repository at this point in the history
Deprecated in 6.30 for removal in 6.32.
  • Loading branch information
Axel-Naumann committed Oct 10, 2023
1 parent 13c8da2 commit 295a170
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tree/dataframe/inc/ROOT/RResultHandle.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,6 @@ public:
return *static_cast<T*>(Get());
}

/// Get an RResultPtr to the encapsulated object.
/// \tparam T Type of the action result
template <class T>
R__DEPRECATED(6, 32, "Please use RResultPtr directly and only cast to RResultHandle in order to call RunGraphs.")
RResultPtr<T> GetResultPtr()
{
CheckType(typeid(T));
return RResultPtr<T>(std::static_pointer_cast<T>(fObjPtr), fLoopManager, fActionPtr);
}

/// Check whether the result has already been computed
///
/// ~~~{.cpp}
Expand Down

0 comments on commit 295a170

Please sign in to comment.