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.

Had this:

rtable.insert ( pair<string,string>(destination,nhop) ); // route insertion
return 0;

Changed it to this:

if (rtable.insert ( pair<string,string>(destination,nhop)) == 0){
    return 0;
}

First one compiles fine. Second one gives me a make error 1. I can go back and forth all day -- I can't see any issues. Any ideas?

share|improve this question

1 Answer

up vote 3 down vote accepted

That overload of std::map::insert() returns a std::pair<iterator, bool>. You can't compare that against zero.

That bool element tells you whether a new element was inserted; if you want to compare against that you can simply use:

if (rtable.insert(pair<string,string>(destination,nhop)).second)
    return 0
share|improve this answer
2  
I read the documentation wrong for the return of the command. Should have looked at it more carefully. Thanks. – BSchlinker Jun 10 '10 at 21:54

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.