Skip to content
Snippets Groups Projects
Commit 6c8ab8dd authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'gcc8.TrigConf2COOLOnline-20181011' into 'master'

TrigConf2COOLOnline: Fix gcc8 warnings.

See merge request atlas/athena!14936
parents 90691e23 a51a5b7e
No related merge requests found
......@@ -400,7 +400,7 @@ TrigConf::OnlTrigC2CWriter::readTriggerDb() {
try {
sm->masterTableLoader().load(*m_CTPConfig);
}
catch(std::exception e) {
catch(const std::exception& e) {
TrigConf::TriggerDBReadError issue(ERS_HERE, e.what());
ers::fatal(issue);
}
......@@ -412,7 +412,7 @@ TrigConf::OnlTrigC2CWriter::readTriggerDb() {
try {
sm->prescaleSetLoader().load(l1pss);
}
catch(std::exception e) {
catch(const std::exception& e) {
TrigConf::TriggerDBReadError issue(ERS_HERE, e.what());
ers::fatal(issue);
}
......
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