linux-packaging-mono/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability-redundant-function-ptr-dereference.rst
Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

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);