vendredi 13 décembre 2019

call to non-static member function without an object

I have class:

class A 
{
public:
void someVoid(const char *text);
static void someStatic (const char *data)
{
someVoid (data);
}
};

I have error ** call to non-static member function without an object ** How can I fix it? Help me please

Aucun commentaire:

Enregistrer un commentaire