gpt4 book ai didi

c++ - 自动模板参数 : g++ 7. 3 vs clang++ 6.0 : Which compiler is correct?

转载 作者:可可西里 更新时间:2023-11-01 16:08:57 26 4
gpt4 key购买 nike

对于这个代码示例,两个编译器会产生不同的结果。Clang 生成两种不同的类型。 G++ 对 fufi 使用相同的类型。哪个符合标准?

#include <iostream>

template< auto IVAL>
struct foo {
decltype(IVAL) x = -IVAL;
};

int main()
{
foo<10u> fu;
foo<10> fi;
std::cout << fi.x << " " << fu.x << '\n';
return 0;
}

g++-7.3输出:

4294967286 4294967286

clang-6.0 输出:

-10 4294967286

最佳答案

gcc 在这里是错误的,这显然是两种不同的类型。

并确认 - 此错误已在 gcc 8.0.1 中修复

Sample code

关于c++ - 自动模板参数 : g++ 7. 3 vs clang++ 6.0 : Which compiler is correct?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48594693/

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