Skip to content

Commit

Permalink
Re #10498 Fixing comoparison signed unsigned warning
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed Dec 3, 2014
1 parent d8f3e5c commit adbdf84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Algorithms/src/PhaseQuadMuon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void PhaseQuadMuon::exec()
*/
void PhaseQuadMuon::convertToNanoSecs (API::MatrixWorkspace_sptr inputWs)
{
for (int h=0; h<inputWs->getNumberHistograms(); h++)
for (size_t h=0; h<inputWs->getNumberHistograms(); h++)
{
auto spec = inputWs->getSpectrum(h);
m_tMin = spec->dataX()[0];
Expand Down

0 comments on commit adbdf84

Please sign in to comment.