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

tauEvent: Fix gcc9 warnings.

In C++11, implicit declarations of copy and assignment are deprecated if the
class has a user defined destructor or copy or assignment.  gcc9 now warns
about this by default.
Adjust to avoid the warning.
parent a1f91491
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
*/
///@file tauAnalysisHelperObject.h DEPRECATED DO NOT USE
......@@ -54,8 +54,8 @@ class tauAnalysisHelperObject
typedef ElementLinkVector<CaloCellContainer> tauCellColl_type;
typedef tauCellColl_type::iterator tauCellColl_iterator;
tauAnalysisHelperObject() {};
virtual ~tauAnalysisHelperObject() {};
tauAnalysisHelperObject() = default;
~tauAnalysisHelperObject() = default;
/** @name Analysis Helper
* set by tauAnalysisHelper::execute()
......
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