c – GCC错误与否:默认std :: function?

前端之家收集整理的这篇文章主要介绍了c – GCC错误与否:默认std :: function?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将默认函数指定为类成员的参数?

从我的代码派生的当前示例是:

#include <iostream>
#include <functional>

template<typename T> struct C
{
    static T test(std::function<T(int)> f = [](int i){return i;})
    {return f(42);}
};

int main(int argc,char* argv[])
{
    C<int>::test(); // ERROR = internal compiler error : in tsubst_copy,at cp/pt.c:11354
    C<int>::test([](int i){return i;}); // OK
    return 0;
}

这是GCC的错误吗?

用另一种语法可以避免这个问题吗?

你能在其他C 11编译器上尝试吗(对于那些有编译器的人)?

解决方法

毫无疑问,这是一个编译器错误.无论您的程序是否格式正确,编译器都会检测到自己的数据结构不一致.

请遵循GCC错误报告说明:http://gcc.gnu.org/bugs/#report

原文链接:https://www.f2er.com/c/118280.html

猜你在找的C&C++相关文章