Converting comment to answer, the reason this works is ADL (Argument Dependent Lookup). Basically what this means is that on failing to find a suitable match for for_each in the current namespace, the compiler has a built-in rule which says, now look in other namespaces - and the set of namespaces it uses for this are the namespaces of the arguments. Once it has a set of namespaces, it will search through them to find a suitable for_each.
The question that remains open is whether std::vector<>::iterator resides in std:: or not. Clearly in your implementation it does, which is why the appropriate for_each in std:: is found. There may be cases where this iterator is not in std:: - so to be safe (as in Alan's comment), always get into the habit of qualifying with std::.
Also this prevents any cases where someone else introduces another for_each (for arguments sake) in to your namespace - which may break things (in a worse case scenario - silently accepts - but breaks at run time).
g++-4.5 --std=c++0x myprog.cppanswer your question? – Merlyn Morgan-Graham Jul 18 '11 at 8:23std::, so for your own collections, you have to writestd::. – Jan Hudec Jul 18 '11 at 8:40vector<T>::iteratorto be a member ofnamespace std(indeed, it could just be a typedef forT*), so it's safest to usestd::even for the standard collections. – Alan Stokes Jul 18 '11 at 9:01