c – Clang问题:在施工时的隐式类型转换

前端之家收集整理的这篇文章主要介绍了c – Clang问题:在施工时的隐式类型转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
概要

我正在努力使C11代码Clang兼容,并且遇到GCC> = 4.6接受代码并且Clang> = 3.1的情况. Clang认为候选建设者不可行.

细节

这是一个修剪下来的例子来说明这个问题:

#include <utility>

template <typename...>
struct T;

template<>
struct T<>
{
    typedef T super;

    constexpr T() { }

    template <typename... Args>
    T(Args&&...) { }

};

template <typename Head,typename... Tail>
struct T<Head,Tail...> : T<Tail...>
{
    typedef T<Tail...> super;

    Head head;

    T(Head arg) : super(),head(std::move(arg)) { }
};


struct void_type
{
    constexpr void_type() { }
    constexpr void_type(const void_type&) { }
    void_type& operator=(const void_type&) = default;

    template <typename Arg0,typename... Args>
    void_type(Arg0&&,Args&&...) { }
};

struct atom { };

int main()
{
    atom a;
    T<void_type> t(a);

    return 0;
}

我得到的错误是:

ctor-init.cpp:44:18: error: no matching constructor for initialization of 'T<void_type>'
    T<void_type> t(a);
                 ^ ~
ctor-init.cpp:19:8: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'atom' to 'const T<void_type>' for 1st argument;
struct T<Head,Tail...> : T<Tail...>
       ^
ctor-init.cpp:25:5: note: candidate constructor not viable: no known conversion from 'atom' to 'void_type' for 1st argument;
    T(Head arg) : super(),head(std::move(arg)) { }
    ^
1 error generated.

我不明白为什么cl声抱怨缺少转换的可能性,因为我认为这个“全部”构造函数应该可以工作:

template <typename Arg0,typename... Args>
void_type(Arg0&&,Args&&...) { }

所以我很困惑的错误是:

ctor-init.cpp:25:5: note: candidate constructor not viable: no known conversion from 'atom' to 'void_type' for 1st argument;
    T(Head arg) : super(),head(std::move(arg)) { }
    ^

毕竟,GCC接受代码.这可能是一个ang虫吗? (我正在使用最新的Clang从LLVM git存储库.)

解决方法

的确,这是一个ang臭.原来,可变的构造函数错误标记为显式. Fixed in Clang r158040.
原文链接:https://www.f2er.com/c/115084.html

猜你在找的C&C++相关文章