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

AthContainersInterfaces: 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 958f3417
No related branches found
No related tags found
No related merge requests found
// This file's extension implies that it's C, but it's really -*- 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
*/
// $Id$
......@@ -36,7 +36,7 @@ class IAuxSetOption
{
public:
/// Make sure this class has a vtable.
virtual ~IAuxSetOption() {}
virtual ~IAuxSetOption() = default;
/**
......
// This file's extension implies that it's C, but it's really -*- 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
*/
// $Id: IAuxTypeVector.h 793692 2017-01-24 16:27:09Z ssnyder $
......@@ -41,7 +41,7 @@ class IAuxTypeVector
{
public:
/// Destructor.
virtual ~IAuxTypeVector() {}
virtual ~IAuxTypeVector() = default;
/**
......
// This file's extension implies that it's C, but it's really -*- 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
*/
// $Id: IConstAuxStore.h 612954 2014-08-21 19:25:01Z ssnyder $
......@@ -64,7 +64,7 @@ class IConstAuxStore
{
public:
/// Destructor.
virtual ~IConstAuxStore() {}
virtual ~IConstAuxStore() = default;
/**
......
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