Skip to content

Commit

Permalink
STYLE: Make RecursiveSeparableImageFilter MathEMAMAMAM/SMAMAMAM static
Browse files Browse the repository at this point in the history
Declared the non-virtual protected `RecursiveSeparableImageFilter`
member functions `MathEMAMAMAM` and `MathSMAMAMAM` static, to indicate
that these member functions do not access `this`.
  • Loading branch information
N-Dekker authored and hjmjohnson committed Jan 9, 2020
1 parent b862049 commit 0e2569e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class ITK_TEMPLATE_EXPORT RecursiveSeparableImageFilter : public InPlaceImageFil


template <typename T1, typename T2>
inline void
static inline void
MathEMAMAMAM(T1 & out,
const T1 & a1,
const T2 & b1,
Expand All @@ -190,7 +190,7 @@ class ITK_TEMPLATE_EXPORT RecursiveSeparableImageFilter : public InPlaceImageFil


template <typename T1, typename T2>
inline void
static inline void
MathEMAMAMAM(VariableLengthVector<T1> & out,
const VariableLengthVector<T1> & a1,
const T2 & b1,
Expand All @@ -213,7 +213,7 @@ class ITK_TEMPLATE_EXPORT RecursiveSeparableImageFilter : public InPlaceImageFil
}

template <typename T1, typename T2>
inline void
static inline void
MathSMAMAMAM(T1 & out,
const T1 & a1,
const T2 & b1,
Expand All @@ -228,7 +228,7 @@ class ITK_TEMPLATE_EXPORT RecursiveSeparableImageFilter : public InPlaceImageFil
}

template <typename T1, typename T2>
inline void
static inline void
MathSMAMAMAM(VariableLengthVector<T1> & out,
const VariableLengthVector<T1> & a1,
const T2 & b1,
Expand Down

0 comments on commit 0e2569e

Please sign in to comment.