Skip to content
Snippets Groups Projects
Commit 961deec7 authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #13989. assigned size_t to int.

parent 7edd0f9e
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ MantidQt::CustomInterfaces::ReflMeasureTransferStrategy::transferRuns(
const Measurement &measurement = group->second[i];
if (subIdMap.find(measurement.subId()) != subIdMap.end()) {
// We already have that subid.
const int rowIndex = subIdMap[measurement.subId()];
const size_t rowIndex = subIdMap[measurement.subId()];
std::string currentRuns = output[rowIndex][ReflTableSchema::RUNS];
output[rowIndex][ReflTableSchema::RUNS] =
currentRuns + "+" + measurement.run();
......
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