どういうわけかD
のインスタンスを作成できません。どうしてか分かりません。テンプレートテンプレートパラメータ(Allocator_class
)が問題のようです。クランからコンストラクタを呼び出せません(テンプレートテンプレートパラメータ)
#include <vector>
template <template<typename T> class Allocator_class>
class T_b {
public:
template<typename T> using A = Allocator_class<T>;
};
template< template <typename T> class A>
class C {
public:
C() { }
};
template<typename Ttb>
class D {
public:
template<typename T> using A = typename Ttb::template A<T>;
typedef C<A> Data;
D(C<A> &data) : _data(data) {}
private:
Data &_data;
};
int main() {
typedef T_b<std::allocator> Ttb;
C<std::allocator> b;
D<Ttb>c(b);
}
エラー:
test5.cpp:29:8: error: no matching constructor for initialization of 'D<Ttb>'
(aka 'D<T_b<std::allocator> >')
D<Ttb>c(b);
^~
test5.cpp:16:7: note: candidate constructor (the implicit copy constructor) not viable: no known
conversion from 'C<std::allocator>' to 'const D<T_b<std::allocator> >' for 1st argument
class D {
^
test5.cpp:16:7: note: candidate constructor (the implicit move constructor) not viable: no known
conversion from 'C<std::allocator>' to 'D<T_b<std::allocator> >' for 1st argument
class D {
^
test5.cpp:21:5: note: candidate constructor not viable: no known conversion from 'C<std::allocator>'
to 'C<A> &' for 1st argument
D(C<A> &data) : _data(data) {}
^
は、この問題が発生したという理由があるのでしょうか? –
おそらく[推論されないコンテキスト](http://stackoverflow.com/questions/25245453/what-is-a-nondeduced-context)? –
最後のエラーは 'C &'と表示されますので、 'A'は推測されません。 –