Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The code below is rejected by VC++ 2012 with "error C2207: 'A::bar' : a member of a class template cannot acquire a function type".

int Hello(int n)
{
    return n;
}

template<class FunctionPtr>
struct A
{
    A(FunctionPtr foo)
        : bar(foo)
    {}

    FunctionPtr bar;
};

int main()
{
    A<decltype(Hello)> a(Hello);

    return 0;
}

Why?

share|improve this question

2 Answers

up vote 2 down vote accepted

gcc is a bit more friendly regarding this error :

error: field 'A<int(int)>::bar' invalidly declared function type

The simplest solution is to declare bar as a function pointer :

FunctionPtr *bar;

In this case, decltype(Hello) evaluates to int(int) not int(*)(int).

share|improve this answer

Variables cannot have function types. You declare bar to be FunctionPtr which is decltype(Hello) which evaluates to int (int), not a function pointer type.

It's confusing because of some inconsistencies inherited from C. When you define the constructor for A as taking a FunctionPtr you might imagine you'd get the same error. However in C function parameters declared as having an array or function type automatically (unfortunately, inconveniently) get turned into pointer types. So even though foo is declared to have a function type it actually has function pointer type and works fine.

But this rule applies only to function parameters and not other variables, so bar actually does have a function type, which is not legal.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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