1 .. title:: clang-tidy - readability-redundant-function-ptr-dereference
3 readability-redundant-function-ptr-dereference
4 ==============================================
6 Finds redundant dereferences of a function pointer.
13 int (*p)(int, int) = &f;
15 int i = (**p)(10, 50);
22 int (*p)(int, int) = &f;