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.
std::make_shared. Is that right? – fish Mar 29 '12 at 10:04