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

TrigT1TGC: Fix clang warning.

Run2TileMuCoincidenceMap can't have a defaulted assignment op due to
a const reference member.
parent 16502434
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!41792StripGeoModelXml, TrigT1TGC, tauRecTools: Fix clang warnings.
......@@ -61,7 +61,7 @@ class Run2TileMuCoincidenceMap
virtual ~Run2TileMuCoincidenceMap() = default;
Run2TileMuCoincidenceMap(const Run2TileMuCoincidenceMap& right) = default;
Run2TileMuCoincidenceMap& operator = (const Run2TileMuCoincidenceMap& right) = default;
Run2TileMuCoincidenceMap& operator = (const Run2TileMuCoincidenceMap& right) = delete;
uint16_t getAddr(int16_t side, int16_t sec, int16_t ssc) const;
......
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