Skip to content
Snippets Groups Projects
Commit 2b63e0da authored by Jose Borreguero's avatar Jose Borreguero
Browse files

Refs #30887 catch exception by reference


Signed-off-by: default avatarJose Borreguero <borreguero@gmail.com>
parent b0ae4ba0
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ void PeakOverlay::createMarkers(const PeakMarker2D::Style &style) { ...@@ -252,7 +252,7 @@ void PeakOverlay::createMarkers(const PeakMarker2D::Style &style) {
try { try {
auto peakFull = dynamic_cast<Mantid::DataObjects::Peak &>(peak); auto peakFull = dynamic_cast<Mantid::DataObjects::Peak &>(peak);
pos = peakFull.getDetPos(); pos = peakFull.getDetPos();
} catch (std::bad_cast&) { } catch (std::bad_cast &) {
g_log.error("Cannot create markers for this type of peak"); g_log.error("Cannot create markers for this type of peak");
return; 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