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-operator-call

This happens when a C++ operator form is called with the wrong number of arguments. It can also happen when the operand types do not support that operator.

Mitigations

Call the operator with the required number of arguments. Make sure the operand types support it.