根据[expr.prim.lambda]以下代码似乎没问题:
#include<functional>
typedef int(*func1)(int);
typedef std::function<int(int)> func2;
int function(int)
{
return 0;
}
template<typename F = func1>
int function1(F f = function)
{
return 0;
}
template<typename F = func2>
int function2(F f = function)
{
return 0;
}
template<typename F = func1>
int function3(F f = [](int i){return 0;})
{
return 0;
}
template<typename F = func2>
int function4(F f = [](int i){return 0;})
{
return 0;
}
但是,gcc(4.8.1)抱怨function3
并function4
显示错误
包含“__lambda”的类的模板参数的默认参数
有人可以解释这个错误吗?