Skip to content
Snippets Groups Projects
Commit 8f3e6a17 authored by Samuel Jackson's avatar Samuel Jackson
Browse files

Refs #8385 Add static cast to variable in LoadFlexiNexusTest

parent 6e6cdecf
No related merge requests found
......@@ -44,7 +44,7 @@ public:
IMDHistoWorkspace_sptr data =
AnalysisDataService::Instance().retrieveWS<IMDHistoWorkspace>(
outputSpace);
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++){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment