Skip to content
Snippets Groups Projects

AthExHive: Fix gcc9 warnings.

Merged Scott Snyder requested to merge ssnyder/athena:gcc9.AthExHive-20181220 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
/*
/*
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 ATHEXHIVE_HIVEDATAOBJ_H
#ifndef ATHEXHIVE_HIVEDATAOBJ_H
@@ -17,7 +17,7 @@ public:
@@ -17,7 +17,7 @@ public:
HiveDataObj():m_val(0) {};
HiveDataObj():m_val(0) {};
HiveDataObj(int i): m_val(i) {};
HiveDataObj(int i): m_val(i) {};
virtual ~HiveDataObj(){};
virtual ~HiveDataObj() = default;
void val(int i) { m_val = i; }
void val(int i) { m_val = i; }
int val() const { return m_val; }
int val() const { return m_val; }
Loading