On 10/21/07, Rene Buergel <[EMAIL PROTECTED]> wrote:
> When i'm trying to compile the following Code:

>             method = &X<T>::some_func<int>;

You forgot the template keyword as X<T> is dependent :
method = &X<T>::template some_func<int>;

There is a defect report against the C++ standard about X<T> being
dependent inside the class itself.

-- Pinski

Reply via email to