Вот минимальный пример:
#include <cstddef>
struct base_pod
{
};
template<typename T, std::size_t N>
struct der_pod : public base_pod
{
T k[N];
};
template<typename T, typename... U>
der_pod(T, U...)
->der_pod<std::enable_if_t<(std::is_same_v<T, U> and ...), T>, 1 + sizeof...(U)>;
int main()
{
der_pod dp {{}, {3, 3} };
}
живое демо
prog.cc:16:9: error: no viable constructor or deduction guide for deduction of template arguments of 'der_pod'
der_pod dp {{}, {3, 3} };
^
prog.cc:11:2: note: candidate template ignored: couldn't infer template argument 'T'
der_pod(T, U...)
^
prog.cc:6:8: note: candidate function template not viable: requires 0 arguments, but 2 were provided
struct der_pod : public base_pod
^
prog.cc:6:8: note: candidate function template not viable: requires 1 argument, but 2 were provided
1 error generated.
Я должен добавить явный аргумент шаблона der_pod<int, 2>
, чтобы пройти компиляцию.
Но руководство по выводам работает нормально, если у него нет базового класса:
template<typename T, std::size_t N>
struct der_pod
{
T k[N];
};
template<typename T, typename... U>
der_pod(T, U...)
->der_pod<std::enable_if_t<(std::is_same_v<T, U> and ...), T>, 1 + sizeof...(U)>;
int main()
{
der_pod dp {3, 3};
}
живое демо
1. Что позади?
2. Как исправить