Il titolo è piuttosto auto-descrittivo. Ho scaricato Qt Creator 2.7.0 e sto cercando di compilare un codice C ++ 11 di base:
int my_array[5] = {1, 2, 3, 4, 5};
for(int &x : my_array)
{
x *= 2;
}
Ricevo il seguente errore:
range based for loops are not allowed in c++ 98 mode
Tuttavia, secondo questo articolo questa versione di Qt Creator supporta C ++ 11. Quindi come posso abilitarlo?