Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a large array of object pointers (lets call it A), and a smaller map of object pointers (M) keyed with the index of A.

While iterating M, I want to swap the mapped pointer (second) with the pointer that is currently at that index (first) in A.

I have something like this:

map<LONG, Object*>::iterator mit;
for (mit = M.begin(); mit != M.end(); mit++)
{
    if ((*mit).first != NO_ID)
    {
          Object* pTmp = pA->ReplaceObject((*mit).first, (*mit).second);
          if (pTmp != NULL)
          {
               M.at((*mit).first) = pTmp;
          }
    }
}

Here ReplaceObject first gets A[(*mit).first] for return, then changes A[(*mit).first] to (*mit).second.

My mapped pointer is staying stubbornly unchanged - though the debugger, appears to show the change happens correctly.

What am I doing wrong?

share|improve this question
So you want to change the key by which your map is sorted? – K-ballo Jan 11 at 1:53
"My mapped pointer is staying stubbornly unchanged - though the debugger, appears to show the change " So is it changing or is it not? Or are they 2 different things? – Karthik T Jan 11 at 1:54
This is for an undo/redo function. I want to change the pointer in the map, it looks like it has worked (Undo), but when I come back to the map (Redo) the pointer still has the "old" value, so my Redo fails. – Kyudos Jan 11 at 1:57
Show ReplaceObject? – Marc Glisse Jan 11 at 13:08
I assume ReplaceObject is called with the pair passed by value instead of by reference. – Wilbert Jan 11 at 13:29

1 Answer

up vote 0 down vote accepted

A great 'wood-for-the-trees' moment - I was simply negelcting to copy my altered undo operation back to the undo stack. Once I stopped looking for the "error" and just read my code, it was obvious! D'oh!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.