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

IOVDbSvc: Fix clang warning.

clang warning: unused private data member.
parent 2c2440e6
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
#include "ReadFromFileMetaData.h" #include "ReadFromFileMetaData.h"
...@@ -16,8 +16,7 @@ namespace IOVDbNamespace{ ...@@ -16,8 +16,7 @@ namespace IOVDbNamespace{
ReadFromFileMetaData::ReadFromFileMetaData( const IOVMetaDataContainer* container, ReadFromFileMetaData::ReadFromFileMetaData( const IOVMetaDataContainer* container,
const IOVTime & refTime, const bool useEpochTimestamp): const IOVTime & refTime, const bool useEpochTimestamp):
m_metaContainer(container), m_metaContainer(container),
m_referenceTime(refTime), m_referenceTime(refTime){
m_isEpochTime(useEpochTimestamp){
m_payload = (container) ? (container->payloadContainer()) : (nullptr); m_payload = (container) ? (container->payloadContainer()) : (nullptr);
if (m_payload){ if (m_payload){
IOVPayloadContainer::const_iterator pitr=m_payload->find(m_referenceTime); IOVPayloadContainer::const_iterator pitr=m_payload->find(m_referenceTime);
......
...@@ -47,7 +47,6 @@ namespace IOVDbNamespace{ ...@@ -47,7 +47,6 @@ namespace IOVDbNamespace{
const IOVMetaDataContainer* m_metaContainer{}; const IOVMetaDataContainer* m_metaContainer{};
IOVTime m_referenceTime{}; IOVTime m_referenceTime{};
const IOVPayloadContainer* m_payload{}; const IOVPayloadContainer* m_payload{};
bool m_isEpochTime{};
CondAttrListCollection * m_pptr{}; CondAttrListCollection * m_pptr{};
AthenaAttributeList * m_attrList{}; AthenaAttributeList * m_attrList{};
CondAttrListCollection * m_attrListColl{}; CondAttrListCollection * m_attrListColl{};
...@@ -56,4 +55,4 @@ namespace IOVDbNamespace{ ...@@ -56,4 +55,4 @@ namespace IOVDbNamespace{
}; };
}//namespace }//namespace
#endif #endif
\ No newline at end of file
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