Bonjour encore moi je voudrais compiler le programme du tuto apprendre le C++ [T.P] Un gestionnaire de discographie mais celui-ci provoque des erreurs a la compilation
{
try
{
std::string entree{ recuperer_commande() };
472 auto[commande, instructions] = analyser_commande(entree);
473 instructions = traitement_chaine(instructions);
474 continuer = executer_commande(discographie, commande, instructions);
}
catch (std::runtime_error const & exception)
{
std::cout << "Erreur : " << exception.what() << std::endl;
}
} while (continuer);
return 0;
Voici les erreurs retournées :
||=== Build: Debug in test (compiler: GNU GCC Compiler) ===|
D:\Users\roger\Projets\test\main.cpp||In function 'int main()':|
D:\Users\roger\Projets\test\main.cpp|472|error: expected unqualified-id before '[' token|
D:\Users\roger\Projets\test\main.cpp|473|error: 'instructions' was not declared in this scope|
D:\Users\roger\Projets\test\main.cpp|474|error: 'commande' was not declared in this scope|
||=== Build finished: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
C'est quand même bizarre que ce Tp ne fonctionne pas ?
+0
-0