diff --git a/examples/run/alpaka/full_chain_algorithm.cpp b/examples/run/alpaka/full_chain_algorithm.cpp index 7952dfedba..22bc4cfc35 100644 --- a/examples/run/alpaka/full_chain_algorithm.cpp +++ b/examples/run/alpaka/full_chain_algorithm.cpp @@ -81,12 +81,7 @@ full_chain_algorithm::full_chain_algorithm(const full_chain_algorithm& parent) m_filter_config(parent.m_filter_config) { } -full_chain_algorithm::~full_chain_algorithm() { - - // We need to ensure that the caching memory resource would be deleted - // before the device memory resource that it is based on. - m_cached_device_mr.reset(); -} +full_chain_algorithm::~full_chain_algorithm() = default; full_chain_algorithm::output_type full_chain_algorithm::operator()( const cell_collection_types::host& cells, diff --git a/examples/run/cuda/full_chain_algorithm.cpp b/examples/run/cuda/full_chain_algorithm.cpp index e7bd1b2038..6a52cb7a02 100644 --- a/examples/run/cuda/full_chain_algorithm.cpp +++ b/examples/run/cuda/full_chain_algorithm.cpp @@ -126,12 +126,7 @@ full_chain_algorithm::full_chain_algorithm(const full_chain_algorithm& parent) } } -full_chain_algorithm::~full_chain_algorithm() { - - // We need to ensure that the caching memory resource would be deleted - // before the device memory resource that it is based on. - m_cached_device_mr.reset(); -} +full_chain_algorithm::~full_chain_algorithm() = default; full_chain_algorithm::output_type full_chain_algorithm::operator()( const cell_collection_types::host& cells, diff --git a/examples/run/sycl/full_chain_algorithm.sycl b/examples/run/sycl/full_chain_algorithm.sycl index 0d061bc283..89089f7e69 100644 --- a/examples/run/sycl/full_chain_algorithm.sycl +++ b/examples/run/sycl/full_chain_algorithm.sycl @@ -103,8 +103,6 @@ full_chain_algorithm::full_chain_algorithm(const full_chain_algorithm& parent) full_chain_algorithm::~full_chain_algorithm() { // Need to ensure that objects would be deleted in the correct order. - m_cached_device_mr.reset(); - m_device_mr.reset(); delete m_data; }