diff --git a/Control/AthenaExamples/AthExHive/AthExHive/HiveDataObj.h b/Control/AthenaExamples/AthExHive/AthExHive/HiveDataObj.h
index a0677e538737cc7795dc64aaefa440954c2a0e14..c22a402d2add9b9d0a92f490a7b9ab85587d1d14 100644
--- a/Control/AthenaExamples/AthExHive/AthExHive/HiveDataObj.h
+++ b/Control/AthenaExamples/AthExHive/AthExHive/HiveDataObj.h
@@ -1,5 +1,5 @@
 /*
-  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
@@ -17,7 +17,7 @@ public:
  
   HiveDataObj():m_val(0) {};
   HiveDataObj(int i): m_val(i) {};
-  virtual ~HiveDataObj(){};
+  virtual ~HiveDataObj() = default;
 
   void val(int i) { m_val = i; }
   int val() const { return m_val; }