Skip to content
Snippets Groups Projects
Commit 40b7e57f authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

StoreGateBindings: Remove DataBucketBase::clone().

DataBucketBase::clone() doesn't appear to be used anywhere.
parent 46f763a6
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/ */
...@@ -145,16 +145,6 @@ namespace SG { ...@@ -145,16 +145,6 @@ namespace SG {
return 0; return 0;
} }
PyDataBucket* PyDataBucket::clone() const
{
PyErr_SetString
( PyExc_RuntimeError,
"SG::PyDataBucket::clone() is not meant to be called (yet)" );
std::abort();
return 0;
// new SG::PyDataBucket( m_type, copy<>(m_pyObj), m_clid );
}
void PyDataBucket::lock() void PyDataBucket::lock()
{ {
RootUtils::PyGILStateEnsure gil; RootUtils::PyGILStateEnsure gil;
......
// -*- C++ -*- // -*- C++ -*-
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef STOREGATEBINDINGS_SGPYDATAMODEL_H #ifndef STOREGATEBINDINGS_SGPYDATAMODEL_H
...@@ -147,12 +147,6 @@ namespace SG { ...@@ -147,12 +147,6 @@ namespace SG {
return m_bib->typeinfo(); return m_bib->typeinfo();
} }
/**
* @brief Return a new @c DataBucket whose payload has been cloned from the
* original one.
*/
virtual SG::PyDataBucket* clone() const override;
/** /**
* @brief Give up ownership of the @c DataBucket contents. * @brief Give up ownership of the @c DataBucket contents.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment