Skip to content
Snippets Groups Projects

StorageSvc: Fix gcc9 warnings.

Merged Scott Snyder requested to merge ssnyder/athena:gcc9.StorageSvc-20181226 into master
4 files
+ 16
7
Compare changes
  • Side-by-side
  • Inline
Files
4
/*
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 POOL_DATACALLBACK_H
@@ -32,6 +32,10 @@ namespace pool {
enum CallType { GET = 1, PUT = 2 };
enum { SKIP = 3 }; // Flag to indicate skipping a column.
DataCallBack() = default;
DataCallBack(const DataCallBack&) = default;
DataCallBack& operator=(const DataCallBack&) = default;
/// Standard destructor
virtual ~DataCallBack() { }
Loading