From 4db62d30a7101fb004e965d7f4f735d4a935a14d Mon Sep 17 00:00:00 2001 From: Owen Arnold <owen.arnold@stfc.ac.uk> Date: Fri, 20 Jul 2012 09:02:55 +0100 Subject: [PATCH] refs #5626. Type conversion warning fixed. --- Code/Mantid/Framework/Algorithms/src/NormaliseByDetector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/Algorithms/src/NormaliseByDetector.cpp b/Code/Mantid/Framework/Algorithms/src/NormaliseByDetector.cpp index 77d75632803..3273990cee9 100644 --- a/Code/Mantid/Framework/Algorithms/src/NormaliseByDetector.cpp +++ b/Code/Mantid/Framework/Algorithms/src/NormaliseByDetector.cpp @@ -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); -- GitLab