In the following piece of code:
BOOST_FOREACH(std::pair<PID, bool> &itval, completedEs_) {
allCompleted &= it->second;
}
I'm getting this error:
error: macro "BOOST_FOREACH" passed 3 arguments, but takes just 2
I'm only passing 2 arguments, what's going on?