gpt4 book ai didi

c++ - Clang 找不到转换运算符

转载 作者:行者123 更新时间:2023-12-01 13:47:56 25 4
gpt4 key购买 nike

在以下代码中,clang 提示不存在转换运算符:

class A{
public:
operator int () const {return i;}

A(int i_): i(i_) {}

template<class B>
friend auto operator * (const B& l, A&& r)
-> decltype(l * int(std::move(r))){
return l * int(std::move(r));
}

int i;
};


所有 clang 版本 6-9 都会发生这种情况,请参阅 https://godbolt.org/z/ELuRHp .错误信息如下:
<source>:11:19: error: cannot convert 'typename std::remove_reference<A &>::type' (aka 'A') to
'int' without a conversion operator
-> decltype(l * int(std::move(r))){
^~~~~~~~~~~~~~~~

相同的代码用 gcc 7-9 编译就好了,所以我想知道这是否是 clang 中的错误或者代码不正确。

编辑:@daniel-langr 提供的相同错误的较短版本,可以在这里找到 https://godbolt.org/z/Krnh27 .
原始代码示例是我们代码库中一个类的简化版本,因此不必要的 decltype .

最佳答案

这看起来像一个 clang 错误。
来自 unqualified name lookup :

For a name used anywhere in class definition (including base class specifiers and nested class definitions), except inside a member function body, a default argument of a member function, exception specification of a member function, or default member initializer, where the member may belong to a nested class whose definition is in the body of the enclosing class, the following scopes are searched:

a) the body of the class in which the name is used until the point of use

...


根据上述内容,您的用户定义转换函数必须在尾随返回类型中可见。
这是另一个在 gcc 上运行良好但在 clang 上无法编译的成员函数示例。
void f(A a, decltype(int(A)) {}

关于c++ - Clang 找不到转换运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60947975/

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