Skip to content

Commit

Permalink
Refs #8385 Add cast to variable in InvertMDDimTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Jackson committed Nov 7, 2013
1 parent 09ad6ca commit 6e6cdec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/SINQ/test/InvertMDDimTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class InvertMDDimTest: public CxxTest::TestSuite {
AnalysisDataService::Instance().retrieveWS<IMDHistoWorkspace>(
outputSpace);
TS_ASSERT_EQUALS(3,data->getNumDims());
long nBin = data->getNPoints();
long nBin = static_cast<long>(data->getNPoints());
long sum = 0;
double *sdata = data->getSignalArray();
for(long i = 0; i < nBin; i++){
Expand Down

0 comments on commit 6e6cdec

Please sign in to comment.