Visual Studio problème avec le fichier utility
Bonjour,
Il existe un fichier nommé utility dans un sous-dossier de VS.
Je ne l'ai pas appellé, il est donc appellé par d'autres fichiers.
Et malheureusement, à la compilation, ce fichier contient des erreurs:
Code:
1 2 3 4 5 6 7
|
pair& operator=(pair<_Ty1, _Ty2>&& _Right)
{ // assign from moved pair
this->first = _STD move(_Right.first);
this->second = _STD move(_Right.second);
return (*this);
} |
Code:
1 2
|
error C2106: '=' : left operand must be l-value |
Alors je me suis dit, j'ai du mal configurer quelque chose.
Est-ce que quelqu'un saurait comment résoudre ce problème?
merci
raphchar