Skip to content

Commit

Permalink
refs #5744. Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Aug 14, 2012
1 parent 70dbe8f commit 34baf73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/API/src/MultiPeriodGroupAlgorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ bool MultiPeriodGroupAlgorithm::processGroups()
alg->initialize();
// Copy all properties over except for input and output workspace properties.
std::vector<Property*> props = this->getProperties();
for (size_t i=0; i < props.size(); i++)
for (size_t j=0; j < props.size(); j++)
{
Property * prop = props[i];
Property * prop = props[j];
if (prop)
{
if (prop != inputProperty)
Expand Down

0 comments on commit 34baf73

Please sign in to comment.