0
votes
1answer
78 views
boost bind compilation error
class A
{
bool OutofRange(string& a, string& b, string c);
void Get(vector <string>& str, string& a, string& b);
}
void A::Get(vector <string>& str, …
1
vote
2answers
83 views
Erase-remove idiom: what happens when remove return past-the-end-iterator?
I got this question when I was reading erase-remove idiom (item 32) from Scott Meyers "Effective STL” book.
vector<int> v;
...
v.erase(remove(v.begin(), v.end(), 99), v.end());
remove …
