This check flags redundant 'inline' specifiers.
It flags 'inline' on member functions defined inside a class definition
like
.. code-block:: c++
struct S {
inline int f() {
return 0;}
};
and 'inline' specifiers on functions that are also declared 'constexpr'.
with inline body -> with an inline body