Answer the question
In order to leave comments, you need to log in
How to take out the definition of a template class (variable) constructor outside of it?
How to take out the definition of a template class (variable) constructor outside of it?
If I write like this:
template<typename ...Args>
class UniformBuffer
{
public:
UniformBuffer(Args... arg);
};
template<typename ...Args>
UniformBuffer::UniformBuffer( Args ...arg)
{
//код
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question