Skip to content

Commit

Permalink
Re #11619. Fix another compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Apr 30, 2015
1 parent 8554918 commit bcf2536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Algorithms/src/ExtractSpectra.cpp
Expand Up @@ -142,7 +142,7 @@ void ExtractSpectra::execHistogram() {
}
Progress prog(this, 0.0, 1.0, (m_spectrumList.size()));
// Loop over the required spectra, copying in the desired bins
for (size_t j = 0; j < m_spectrumList.size(); ++j) {
for (int j = 0; j < static_cast<int>(m_spectrumList.size()); ++j) {
auto i = m_spectrumList[j];
// Preserve/restore sharing if X vectors are the same
if (m_commonBoundaries) {
Expand Down

0 comments on commit bcf2536

Please sign in to comment.