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.

I want to make functor to generic function, but I get compiler error. Here is the code:

template <class T>
struct Creator
{
    template <typename...Ts>
    static std::shared_ptr<T> create(Ts&&... vs)
    {
        std::shared_ptr<T> t(new T(std::forward<Ts>(vs)...));
        return t;
    }
};

class Car:
        public Creator<Car>
{
    private:
        friend class Creator<Car>;
        Car()
        {
        }
};

int main()
{
    auto car=Car::create();
    std::function< std::shared_ptr<Car> () > createFn=&Car::create;

    return 0;
}

I get the following error in GCC 4.6.3 on the second statement(the first is OK):

error: conversion from β€˜<unresolved overloaded function type>’
       to non-scalar type β€˜std::function<std::shared_ptr<Car>()>’ requested

Any hint appreciated.

share|improve this question
@NicolBolas: Fixed thanks. – Dragomir Ivanov Mar 29 '12 at 9:07
5  
It seems to me that you are trying to replicate std::make_shared. Is that right? – fish Mar 29 '12 at 10:04
@TamásSzelei: This is just distilled example, from my real application. This code will be part of object factory, which will return smart pointers of base type, based on a key supplied. The answer below is what I wanted to see. – Dragomir Ivanov Mar 29 '12 at 12:02

1 Answer

up vote 3 down vote accepted

If the pointer of a template function is needed, the template must be instantiated first.

std::function<std::shared_ptr<Car>()> createFn = &Car::create<>;

This will make it compile on clang++ 3.1, but g++ 4.8 still refuses to compile, which I believe is a bug.

You could provide a lambda function instead:

std::function<std::shared_ptr<Car>()> createFn = []{ return Car::create(); };
share|improve this answer
Thank you. I actually tried your first solution but didn't doubted the compiler a bit. Clang 3.0 also compiles this code. I will make a bug report to GCC. – Dragomir Ivanov Mar 29 '12 at 12:04
1  

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.