gpt4 book ai didi

c++ - 为什么不接受使用概念的此类特化?

转载 作者:行者123 更新时间:2023-12-03 06:54:15 26 4
gpt4 key购买 nike

以下代码尝试使用概念对类进行部分特化并向特化添加方法,但被 clang 11.0.0 拒绝:

#include <concepts>

template <typename T> // note: previous template declaration is here
struct S {};

template <std::integral T>
struct S<T>
{
void f();
};

template <std::integral T> // error: type constraint differs in template redeclaration
void S<T>::f()
{
}
clang 给出了错误信息:
<source>:14:16: error: type constraint differs in template redeclaration
template <std::integral T>
^
<source>:3:11: note: previous template declaration is here
template <typename T>
(见 https://godbolt.org/z/Wv1ojK)。为什么这段代码是错误的?或者这是clang中的一个错误? (FWIW,此代码被 gcc trunk 和 MSVC 19.28 接受,尽管这不能保证正确性。)

最佳答案

这绝对是一个 CLANG 错误。已经备案 - #48020 .

关于c++ - 为什么不接受使用概念的此类特化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64780598/

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