Skip to content
Snippets Groups Projects
Commit 12d51c85 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'gcc9.AthContainersInterfaces-20181211' into 'master'

AthContainersInterfaces: Fix gcc9 warnings.

See merge request atlas/athena!16678

Former-commit-id: 9c31d874
parents 78c42f91 25719253
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++ -*-. // 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$ // $Id$
...@@ -36,7 +36,7 @@ class IAuxSetOption ...@@ -36,7 +36,7 @@ class IAuxSetOption
{ {
public: public:
/// Make sure this class has a vtable. /// 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++ -*-. // 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 $ // $Id: IAuxTypeVector.h 793692 2017-01-24 16:27:09Z ssnyder $
...@@ -41,7 +41,7 @@ class IAuxTypeVector ...@@ -41,7 +41,7 @@ class IAuxTypeVector
{ {
public: public:
/// Destructor. /// Destructor.
virtual ~IAuxTypeVector() {} virtual ~IAuxTypeVector() = default;
/** /**
......
// This file's extension implies that it's C, but it's really -*- C++ -*-. // 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 $ // $Id: IConstAuxStore.h 612954 2014-08-21 19:25:01Z ssnyder $
...@@ -64,7 +64,7 @@ class IConstAuxStore ...@@ -64,7 +64,7 @@ class IConstAuxStore
{ {
public: public:
/// Destructor. /// 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