In code:

template<class T>
struct is_builtin
{
    enum {value = 0};
};

template<>
struct is_builtin<char>
{
    enum {value = 1};
};

template<>
struct is_builtin<int>
{
    enum {value = 1};
};

template<>
struct is_builtin<double>
{
    enum {value = 1};
};

template<class T>
struct My
{
typename enable_if<is_builtin<T>::value,void>::type f(T arg)
{
    std::cout << "Built-in as a param.\n";
}


typename enable_if<!is_builtin<T>::value,void>::type f(T arg)
{
    std::cout << "Non - built-in as a param.\n";
}
};
struct A
{
};
int _tmain(int argc, _TCHAR* argv[])
{
    A a;
    My<int> m;
    My<A> ma;
    m.f(1);
    ma.f(a);
    return 0;
}

I'm getting an error:
Error 1 error C2039: 'type' : is not a member of 'std::tr1::enable_if<_Test,_Type>'
Obviously I don't understand how to use enable_if. What I was thinking was that I can enable one or the second one function from a set of functions during compilation time but it seems not working for me. Could anyone please explain to me how to do it correctly?
Edited
What I really can't understand is why isn't there typedef in one of those def. Compiler cannot find it and it wont compile it.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can't use class template parameters to get SFINAE for member functions.

You either need to

  • make the member function a member function template instead and use enable_if on the member function template's template parameters or

  • move the member function f into a policy class and specialize the class template using enable_if.

link|improve this answer
could you provide some example please? – There is nothing we can do Nov 11 '10 at 20:11
@There: There is an example of using the second approach (specializing a class template) in the Boost enable_if documentation (see section 3.1). – James McNellis Nov 11 '10 at 20:13
thanks for link. Going to read it now. – There is nothing we can do Nov 11 '10 at 20:16
feedback

enable_if expects a metafunction. To use a bool you need enable_if_c. I'm surprised you're not getting errors explaining THAT problem.

You can fix your metafunction by declaring a 'type' typedef inside that is simply itself. Then you can use boost::enable_if<is_builtin<T>>::type

link|improve this answer
1  
I use std::enable_if – There is nothing we can do Nov 11 '10 at 20:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.