Tagged Questions

0
votes
3answers
137 views

Access Violation Reading Location on std::set::erase

Hi. I have recently catched the following crash in my application: m_players[0].erase(plr); -- CRASHES HERE m_players[1].erase(plr); m_players is declared as: set m_players[2]; Visual Studio …
5
votes
6answers
700 views

Is the C++ STL std::set thread-safe?

I've a question about the thread safety of std::set. As far as I know I can iterate over a set and add/erase members and that doesn't invalidate the iterators. But consider following scenario: …
6
votes
4answers
215 views

How do I find the largest int in a std::set<int> ?

I have a std::set, what's the proper way to find the largest int in this set ?