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

TrigEFMissingET: Fix clang10 warning.

Add a default ctor to PufitGrid::Tower.
Avoids warnings provoked by having a user-defined assignment operator.
parent ec7c7242
No related branches found
No related tags found
No related merge requests found
/*
* Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
* Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
/******************************************************************************
......@@ -48,6 +48,8 @@ namespace HLT { namespace MET {
*/
Tower(const PufitGrid* parent, std::size_t index);
Tower(const Tower&) = default;
/**
* @brief Copy assignment operator
*
......
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