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

TileRec: Fix warnings seen in LTO build.

Uninitialized variables.
parent 21fab6af
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
//*****************************************************************************
......@@ -146,7 +146,7 @@ StatusCode TileCellToNtuple::execute()
// step1: read Cells from TDS
const CaloCellContainer* CellCnt;
const CaloCellContainer* CellCnt = nullptr;
CHECK( evtStore()->retrieve(CellCnt, m_cellContainer) );
// step2: to fill items in ntuple
......
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