by Tim Frink <plfriko@[EMAIL PROTECTED]
>
May 9, 2008 at 10:13 AM
> You can invoke it as follows
>
> objectA.foo( string( "test" ), &objectA, &A::funcPtr );
>
> (note the extra '&').
You are completely right, I just missed the '&' in my post.
>
> When you don't supply explicit arguments, the complier has nothing to
> deduce the meaning of 'T' from. (Default arguments are ignored by the
> deduction process).
Thank you, now it's clear.