error C2679: binary '!=' : no operator found which takes a right-hand operand of type 'std::string'
Bonjour, j'ai déclarer l'opérateur dans ma classe Value

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
 
#include <string>
 
bool operator!=(std::string value);
Cette erreur m'est retournée avec VC6 et VC8.

Merci!