c++ class Template argument forwarding misunderstanding
Summary The issue at hand is a template argument forwarding misunderstanding in C++. The author is trying to create a template class Tata that takes a variable number of arguments and forwards them to the constructor of another class T. However, the compiler is unable to find a matching function, and the arguments are not … Read more