jlh <jlh@xxxxxx> writes: | Dan Kegel wrote: | > find_if (d.begin(), d.end(), ptr_fun(isspace<char>)); | | AFAIK, isspace isn't a template, so that code doesn't make sense to me. There *is* a function template "isspace" defined in <locale>, it requires two arguments (as opposed to the C-language isspace defined in <cctype>); but the code is wrong. -- Gaby