Skip to content

Commit

Permalink
Merge pull request #2781 from jhlegarreta/FixMissingInitializationBra…
Browse files Browse the repository at this point in the history
…cesWarnings2
  • Loading branch information
thewtex authored Oct 6, 2021
2 parents 2088c26 + c19cdcd commit c2bf292
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ITK_TEMPLATE_EXPORT DummyImageSource : public ImageSource<TOutputImage>
TOutputImage * output = nullptr;
output = this->GetOutput(0);
typename TOutputImage::RegionType largestPossibleRegion;
largestPossibleRegion.SetSize({ 4 });
largestPossibleRegion.SetSize({ { 4 } });
output->SetLargestPossibleRegion(largestPossibleRegion);
}

Expand Down

0 comments on commit c2bf292

Please sign in to comment.