概要
我正在努力使 C++11 代码与 Clang 兼容,并遇到了 GCC >= 4.6 接受代码而 Clang >= 3.1 不接受的情况。Clang 认为一个candidate constructor not viable
.
细节
这是一个精简的例子来说明这个问题:
#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.
我不明白为什么 clang 抱怨缺少转换的可能性,因为我认为这个“包罗万象”的构造函数应该可以工作:
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 接受了代码。这可能是 Clang 错误吗?(我使用的是 LLVM git 存储库中最新的 Clang。)