@@ -232,7 +232,7 @@ class ITK_TEMPLATE_EXPORT RunLengthTextureFeaturesImageFilter
232232 typedef typename NeighborhoodIteratorType::NeighborIndexType NeighborIndexType;
233233
234234 RunLengthTextureFeaturesImageFilter ();
235- virtual ~RunLengthTextureFeaturesImageFilter () {}
235+ ~RunLengthTextureFeaturesImageFilter () override {}
236236
237237 void NormalizeOffsetDirection (OffsetType &offset);
238238 bool IsInsideNeighborhood (const OffsetType &iteratedOffset);
@@ -241,14 +241,14 @@ class ITK_TEMPLATE_EXPORT RunLengthTextureFeaturesImageFilter
241241 const OffsetType &offset, const unsigned int &pixelDistance);
242242 void ComputeFeatures ( vnl_matrix<unsigned int > &hist, const unsigned int &totalNumberOfRuns,
243243 typename TOutputImage::PixelType &outputPixel);
244- virtual void PrintSelf ( std::ostream & os, Indent indent ) const ITK_OVERRIDE ;
244+ void PrintSelf ( std::ostream & os, Indent indent ) const override ;
245245
246246 /* * This method causes the filter to generate its output. */
247- virtual void BeforeThreadedGenerateData () ITK_OVERRIDE ;
248- virtual void AfterThreadedGenerateData () ITK_OVERRIDE ;
249- virtual void ThreadedGenerateData (const OutputRegionType & outputRegionForThread,
250- ThreadIdType threadId) ITK_OVERRIDE ;
251- virtual void GenerateOutputInformation () ITK_OVERRIDE ;
247+ void BeforeThreadedGenerateData () override ;
248+ void AfterThreadedGenerateData () override ;
249+ void ThreadedGenerateData (const OutputRegionType & outputRegionForThread,
250+ ThreadIdType threadId) override ;
251+ void GenerateOutputInformation () override ;
252252
253253private:
254254 typename DigitizedImageType::Pointer m_DigitizedInputImage;
0 commit comments