Skip to content

Commit

Permalink
Merge topic 'vtkAMRInformation_cleanup'
Browse files Browse the repository at this point in the history
d970403 Prepending this-> to class members to match VTK coding convention

Acked-by: Kitware Robot <[email protected]>
Reviewed-by: David E. DeMarle <[email protected]>
Merge-request: !3006
  • Loading branch information
Andrew Bauer authored and kwrobot committed Jul 7, 2017
2 parents dbdb8ec + d970403 commit a18bb51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Common/DataModel/vtkAMRInformation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -546,13 +546,13 @@ void vtkAMRInformation::GenerateParentChildInformation()
{
this->GenerateRefinementRatio();
}
AllChildren.resize(this->GetNumberOfLevels());
AllParents.resize(this->GetNumberOfLevels());
this->AllChildren.resize(this->GetNumberOfLevels());
this->AllParents.resize(this->GetNumberOfLevels());

unsigned int numLevels = this->GetNumberOfLevels();
for(unsigned int i=1; i<numLevels; i++)
{
this->CalculateParentChildRelationShip(i, AllChildren[i-1], AllParents[i]);
this->CalculateParentChildRelationShip(i, this->AllChildren[i-1], this->AllParents[i]);
}
}

Expand Down

0 comments on commit a18bb51

Please sign in to comment.