I have a std::multiset of sorted custom objects. Two equal objects (based on the < operator) in the multiset may contain some fields which are not equal. In that case I need to maintain the order of insertion of objects in the multiset<>.
I know this is not an issue if I am using C++11 but we are not at this point.
Another solution I saw uses a timestamp field in the class using <ctime> but that gives a resolution of 1 second. If I have 2 insertions in the same second then I cant use the timestamp in the compare operation. We are not / can not using boost::chrono on this project.
Is there another way I can use to ensure insertion order is maintained?
