[ERROR]
Only a virtual function can be declared as pure. Following example shows an hill-formed declaration.
class A{ // class
public:
void f(void)=0; // ill-formed declaration.
};
Make the function virtual. For overloaded functions check if the parameters are identical to the base virtual function.