関数fromStdStringを使用できません。qtアシスタントでは、「この演算子は、QtがSTL互換性を有効にして構成されている場合にのみ使用できます」と述べられています。しかし、これを有効にする方法がわかりません。解決策を提供してください。
int main(int argc, char *argv[])
{
std::string read;
QString monthsArr[12];
QStringList monthlist;
std::ifstream readfile;
readfile.open("/home/pcamdin/practice/qtcpp/qtprogs/qtcpp/months.txt");
for(int i=0; i<6; i++)
{
readfile >> read;
monthsArr[i] = fromStdString(read);
monthlist << monthsArr[i];
qDebug() << i+1 << ": " << monthsArr[i];
}
qDebug() << "the first " << monthlist.size() << " months of the year are " << monthlist;
}