Thank you for reviewing the patch. > > + for (FileList::iterator it = file_list_.begin(); it != > > file_list_.end(); ++it) > > + it->invalidate(); > > > Same for-style here...
I am not quite sure about this style issue. Is FileList::iterator it = file_list_.begin(); for (; it != file_list_.end(); ++it) it->invalid(); recommended over the one I used? Jose? Bo