Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

analyze/invalid-cpp-member-call

This happens when a .member call is missing its target object. It can also happen when the target type does not have a matching callable member function.

Mitigations

Pass the target object first. Make sure the member function exists for that type and argument list. The member function must be public.