I have a class named Player but when building a constructor like the one below, I got a warning that read: ISO C++ forbids converting a string constant to 'char'. Can anyone tell me what this means and how I can fix it?
class Player
{
public:
Player(char * firstN = "", char * lastN = "");
};