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

AthenaKernel: Fix compilation with gcc11.

    
Can't use full template-id to name a destructor.
parent 83d89cdb
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ CondCont<T>::CondCont (Athena::IRCUSvc& rcusvc,
* @brief Destructor.
*/
template <typename T>
CondCont<T>::~CondCont<T>()
CondCont<T>::~CondCont()
{
}
......@@ -409,7 +409,7 @@ bool CondContMixedBase::valid (const EventIDBase& t) const
* @brief Destructor.
*/
template <typename T>
CondContMixed<T>::~CondContMixed<T>()
CondContMixed<T>::~CondContMixed()
{
}
......
......@@ -104,7 +104,7 @@ namespace SG {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
template <typename T>
MetaCont<T>::~MetaCont<T>() {
MetaCont<T>::~MetaCont() {
for (auto t : m_metaSet) {
delete t.second;
}
......
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