Skip to content

Commit

Permalink
refs #10820. Fix unitialized warning
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Dec 22, 2014
1 parent f20ff02 commit 8e04a8a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -146,7 +146,7 @@ void ConvertMDHistoToMatrixWorkspace::make1DWorkspace() {
Mantid::Kernel::VMD start = VMD(nd);
Mantid::Kernel::VMD end = VMD(nd);

size_t id;
size_t id = 0;
for (size_t d = 0; d < nd; d++) {
Mantid::Geometry::IMDDimension_const_sptr dim =
inputWorkspace->getDimension(d);
Expand Down

0 comments on commit 8e04a8a

Please sign in to comment.