Couldn't find an answer on Google..
When I use std::string the following works fine.
map <fxString, int> test;
test.insert(pair <fxString, int> ("Bla", 1));
test.insert(pair <fxString, int> ("Bla", 2));
test.insert(pair <fxString, int> ("Bla", 3));
cout << fxInt2String(test["Bla"]) << endl;
Which should output 1, but instead outputs 0
When I iterate through the map every key value pair is there, sitting right next to each other mocking me.
fxString defines the following operators: operator > operator < operator == operator !=
And more, and I tested them..
Grom.
fxStringandfxInt2String? – Let_Me_Be Nov 29 '10 at 20:30<operator look like? – Nim Nov 29 '10 at 20:30operator<should return false for objects that are equal. – Eclipse Nov 29 '10 at 20:49