Code inspection is leaving in ':' when converting the copy c'tor to use = default.
class Base
{
public:
Base(const Base& other) {}
};
class Derived : public Base
{
public:
Derived(const Derived& other) : Base(other) {}
};
Auto-fixing the Derived copy c'tor yields:
Derived(const Derived& other) : = default;