Skip to content

Commit

Permalink
COMP: Remove unused region parameter in default copy constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
blowekamp committed Dec 11, 2019
1 parent 98c5620 commit b0ad27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkImageIORegion.h
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ class ITKCommon_EXPORT ImageIORegion : public Region

/** Copy constructor. ImageIORegion is a lightweight object that is not
* reference counted, so the copy constructor is public. */
ImageIORegion(const Self & region) = default;
ImageIORegion(const Self &) = default;

/** Move-constructor. Fast and non-throwing. */
ImageIORegion(Self &&) = default;

0 comments on commit b0ad27f

Please sign in to comment.