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

LArSamplesMon: Fix gcc10 warning.

Implicitly-declared copy ctor is deprecated if there's an explicit 
assignment operator.
parent 296d1e85
No related branches found
No related tags found
5 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45705LArSamplesMon: Fix gcc10 warning.
...@@ -27,6 +27,7 @@ namespace LArSamples { ...@@ -27,6 +27,7 @@ namespace LArSamples {
/** @brief Constructor */ /** @brief Constructor */
Averager(unsigned int n = 0); Averager(unsigned int n = 0);
Averager(unsigned int lwb, unsigned int upb); Averager(unsigned int lwb, unsigned int upb);
Averager(const Averager&) = default;
virtual ~Averager() { } virtual ~Averager() { }
......
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