gpt4 book ai didi

c++ - Clang 和 GCC 在强制转换 C++17 中的非类型模板参数的自动说明符中存在分歧

转载 作者:IT老高 更新时间:2023-10-28 22:04:58 28 4
gpt4 key购买 nike

我基本上有一个依赖于非类型模板参数的类。我定义了一个转换,因此非类型模板参数 N 的对象可以转换为另一个 M。我有一个可以重现这种情况的最小示例:

template<auto Integral>
class Test{
public:
typedef decltype(Integral) value_type;
static constexpr value_type N = Integral;

constexpr Test (const value_type& x = 0);

template<auto Integral2>
constexpr explicit operator Test<Integral2>() const;
private:
value_type n;
};

template<auto Integral>
constexpr Test<Integral>::Test (const value_type& x){
if (x < 0){
n = N - (-x)%N;
}
else{
n = x%N;
}
}

template<auto Integral> template<auto Integral2>
constexpr Test<Integral>::operator Test<Integral2>() const{
return Test<Integral2>(n%(Test<Integral2>::N));
}

我在带有 -O2 -std=c++17 标志的 Ubuntu 16.04 LTS 中使用 GCC 7.2.0 和 Clang 5.0.0 进行编译。

问题是我一直在使用 g++ 进行编译,一切都按预期工作,但后来我尝试 clang++ 检查一切是否仍然编译正常。

令我惊讶的是,事实并非如此,因为 clang++ 提示了一些 g++ 没有的部分。您可以在 Compiler Explorer 中查看差异 View .

clang++ 产生的错误消息之一是:

error: out-of-line definition of 'operator Test<Integral2>' does not match any declaration in 'Test<Integral>'

这让我觉得clang++没有找到“正确”的转换声明,但我不知道。

注意:第一个错误仅在将声明与定义分开时出现。否则,它似乎是正确的。

这是 clang++ 产生的第二个错误:

error: a non-type template parameter cannot have type 'auto'

但是这个更让我吃惊,因为这个错误告诉了一些在 C++17 中应该是有效的东西。可能我在这里遗漏了一些东西,因为这对我来说没有意义。

请记住,第二个错误仅在此转换的情况下出现。实际代码中的任何地方都会出现错误(即使有更多 auto 非类型模板参数)。

此时,我有一些问题:

  • 在 clang 编译器的情况下产生错误的原因是什么?
  • 根据标准,哪个是正确的?

最佳答案

这是一个clang错误。这是一个简短的复制:

template <int A>
struct X {
template <auto B>
X<B> foo();
};

template <int A>
template <auto B>
X<B> X<A>::foo() {
return {};
}

如果 auto Bint B 替换,clang 接受它。 gcc 按原样接受它。对于 clang,这只是嵌套 template 声明的问题。 auto 作为占位符模板的非类型参数并不会阻止它被用来定义一些异常的东西。

在提交新的 clang 错误时,我发现了 35655 ,复制时间更短:

template<typename>
struct S {
template<auto n>
static void f() {
+n;
}
};

失败:

source.cpp:5:3: error: invalid argument type 'auto' to unary expression
+n;

关于c++ - Clang 和 GCC 在强制转换 C++17 中的非类型模板参数的自动说明符中存在分歧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48106476/

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