Qt ide gives error about"error: passing 'const QChar' as 'this' argument of 'QChar& QChar::operator=(const QChar&)' discards qualifiers"
here
for(int i=reqposition;;i++)
{
if(data.at(i)==',')
break;
temp.at(j)=data.at(i); // ERROR IS HERE
j++;
}
what do i do to solve it!