Skip to content
Snippets Groups Projects
Commit 8fc90ffd authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'gcc8.MuonCalibStandAloneExtraTools-20181005' into 'master'

MuonCalibStandAloneExtraTools: Fix gcc8 warning.

See merge request atlas/athena!14761
parents ddb9b5bd 657ee93e
No related branches found
No related tags found
No related merge requests found
...@@ -191,7 +191,7 @@ StatusCode NtupleSplitterTool::handleEvent(const MuonCalibEvent &event, int evnt ...@@ -191,7 +191,7 @@ StatusCode NtupleSplitterTool::handleEvent(const MuonCalibEvent &event, int evnt
const MuonCalibEvent_E & extra_event = dynamic_cast<const MuonCalibEvent_E &>(event); const MuonCalibEvent_E & extra_event = dynamic_cast<const MuonCalibEvent_E &>(event);
fillTrackNtuple(extra_event); fillTrackNtuple(extra_event);
} }
catch(std::bad_cast exp) { catch(const std::bad_cast& exp) {
ATH_MSG_WARNING("Not reading extra tree, but track writing is requested!"); ATH_MSG_WARNING("Not reading extra tree, but track writing is requested!");
m_track_authors.clear(); m_track_authors.clear();
} }
......
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