作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑一个模板化的实体,说(A)一个功能模板,(B)一个类模板的成员枚举。
// (A)
template<auto>
int f();
// (B)
template <auto>
struct T { enum class E; };
是否由于对此类模板实体的相同显式特化的重复定义而需要诊断ODR违规的实现?或者换句话说,
[basic.def.odr]/1是否适用于显式特化?
// Single translation unit;
// primary template of 'f' declared as in (A) above.
template<>
int f<0>() { return 0; }
template<>
int f<0>() { return 1; }
// GCC & Clang - error: redefinition of 'int f() [with auto <anonymous> = 0]'
而只有Clang可以将追踪程序诊断为格式错误,而GCC则接受:
// Single translation unit;
// primary template of 'T' defined as in (B) above.
template<>
enum class T<0>::E { ex };
template<>
enum class T<0>::E { ey };
// Clang only - error: redefinition of 'E'
病态的NDR还是病态的? (/两个编译器都正确,还是GCC错误?)
-std=c++17
和
-std=c++2a
在各种GCC和Clang版本上进行了测试,结果相同
最佳答案
Is an implementation required to diagnose ODR-violations due to duplicated definitions of the same explicit specialization of such a template entity?
No translation unit shall contain more than one definition of any variable, function, class type, enumeration type, or template.
关于c++ - 是否需要实现来诊断对同一TU中相同显式专业的重复定义进行ODR违规?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65041711/
我是一名优秀的程序员,十分优秀!