Skip to content
Snippets Groups Projects
Commit a3004c55 authored by Martyn Gigg's avatar Martyn Gigg Committed by GitHub
Browse files

Fix a warning on MSVC

parent 1c9a2f17
No related branches found
No related tags found
No related merge requests found
......@@ -1530,7 +1530,7 @@ signal_t MatrixWorkspace::getSignalAtCoord(
else
i = Kernel::VectorHelper::indexOfValueFromCenters(xVals.rawData(),
xCoord);
} catch (std::out_of_range &e) {
} catch (std::out_of_range &) {
return std::numeric_limits<double>::quiet_NaN();
}
......
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