pair is name of a standard class and with the using namespace std, there is a collision.
Several solutions :
Rename your class to something else.
Dont use the using statement
by James Palmer
pair is name of a standard class and with the using namespace std, there is a collision.
Several solutions :
Rename your class to something else.
Dont use the using statement