Skip to content

Commit

Permalink
refs #5626. Type conversion warning fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jul 20, 2012
1 parent 719cb55 commit 4db62d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ namespace Mantid
if(m_parallelExecution == true)
{
PARALLEL_FOR2(inWS, denominatorWS)
for(int wsIndex = 0; wsIndex < nHistograms; ++wsIndex)
for(int wsIndex = 0; wsIndex < static_cast<int>(nHistograms); ++wsIndex)
{
PARALLEL_START_INTERUPT_REGION
this->processHistogram(wsIndex, denominatorWS, inWS);
Expand Down

0 comments on commit 4db62d3

Please sign in to comment.