25 lines
421 B
ReStructuredText
25 lines
421 B
ReStructuredText
|
.. title:: clang-tidy - readability-redundant-function-ptr-dereference
|
||
|
|
||
|
readability-redundant-function-ptr-dereference
|
||
|
==============================================
|
||
|
|
||
|
Finds redundant dereferences of a function pointer.
|
||
|
|
||
|
Before:
|
||
|
|
||
|
.. code-block:: c++
|
||
|
|
||
|
int f(int,int);
|
||
|
int (*p)(int, int) = &f;
|
||
|
|
||
|
int i = (**p)(10, 50);
|
||
|
|
||
|
After:
|
||
|
|
||
|
.. code-block:: c++
|
||
|
|
||
|
int f(int,int);
|
||
|
int (*p)(int, int) = &f;
|
||
|
|
||
|
int i = (*p)(10, 50);
|