Tagged Questions
7
votes
7answers
23k views
C++ deprecated conversion from string constant to 'char*'
I have a class with a private char str[256];
and for it I have an explicit constructor:
explicit myClass(const char *func)
{
strcpy(str,func);
}
I call it as:
myClass obj("example");
When I ...