I'm trying to get a char from an std::string and see what it's value is. The error is on the line of the if statement. Cannot convert from `const char' to `const char*'
Code:
const char done = taskdata.at(1);
if(strncmp(done, "*", 1) == 0)
m_done = true;
else
m_done = false;