Skip to content
Snippets Groups Projects
Commit 7cb03ef0 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ENH : remet le throw in ImageList (mother class has it)

parent 45bb64d6
Branches
Tags
No related merge requests found
...@@ -59,7 +59,7 @@ public: ...@@ -59,7 +59,7 @@ public:
* Update images in the list. * Update images in the list.
*/ */
virtual void UpdateOutputInformation(void); virtual void UpdateOutputInformation(void);
virtual void PropagateRequestedRegion(void); virtual void PropagateRequestedRegion(void) throw (itk::InvalidRequestedRegionError);
virtual void UpdateOutputData(void); virtual void UpdateOutputData(void);
......
...@@ -46,7 +46,7 @@ ImageList<TImage> ...@@ -46,7 +46,7 @@ ImageList<TImage>
template <class TImage> template <class TImage>
void void
ImageList<TImage> ImageList<TImage>
::PropagateRequestedRegion() ::PropagateRequestedRegion() throw (itk::InvalidRequestedRegionError)
{ {
Superclass::PropagateRequestedRegion(); Superclass::PropagateRequestedRegion();
for (ConstIterator it = this->Begin(); it!=this->End();++it) for (ConstIterator it = this->Begin(); it!=this->End();++it)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment