Reports the functions that hide non-virtual functions with the same signature declared in the base class.

Example:

class Base {
  public:
    void operate() {}
};

class Derived : public Base {
  public:
    void operate() {}
}