Michael Gatford <[EMAIL PROTECTED]> wrote: > std::map<string, thisfunc>::const_iterator functionIterator = > quickfindtag.find(funcname);
It's missing a typename keyword here: typename std::map<string, thisfun>::const_iterator functionIterator = .... See: http://gcc.gnu.org/gcc-3.4/changes.html, C++ section. -- Giovanni Bajo