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

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

HLTRates2COOL: Fix gcc8 warnings.

See merge request atlas/athena!14933
parents 0c25ad94 b0e8713d
No related branches found
No related tags found
No related merge requests found
......@@ -93,11 +93,11 @@ hltca::HLTCountsArchiverRCApp::writeToCool() {
m_coolWriter.flushStorageBuffers();
}
catch(cool::Exception ex) {
catch(const cool::Exception& ex) {
std::cerr << "cool::exception: Could not write to COOL: " << ex.what() << std::endl;
return;
}
catch(std::exception ex) {
catch(const std::exception& ex) {
std::cerr << "std::exception: Could not write to COOL: " << ex.what() << std::endl;
return;
}
......
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