'destructor' : defined but not declared
The destructor is defined but not declared in the class body.
Example
class C { C(); // only a constructor is declared }; C::C() {} // OK, constructor is defined C::~C() // undeclared destructor definition { // error on this line }