gpt4 book ai didi

c++ - 对于 GCC 的 "sorry, unimplemented: cannot expand ‘NEXT ...’ 到固定长度参数列表“错误”,是否有一个很好的解决方法?

转载 作者:行者123 更新时间:2023-11-30 04:28:48 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
GCC error with variadic templates: “Sorry, unimplemented: cannot expand 'Identifier…' into a fixed-length argument list”

我有这段代码,它会产生标题中显示的错误消息:

#include <iostream>

template <int FIRST, int... NEXT>
struct Test {
static const int VALUE = FIRST + Test<NEXT...>::VALUE;
};

template <int FIRST>
struct Test<FIRST> {
static const int VALUE = FIRST;
};

int main() {
std::cout << Test<1, 2, 3>::VALUE << std::endl; // print "6"
return 0;
}

是否有任何简单的解决方法可以在不改变其功能的情况下使其在 GCC 中编译?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com