'declaration' : expects at least value1 argument - value2 provided
A function template with a variable parameter list has too few arguments.
Example
template<class T> void f(T, int, ...){ } f(1); //error
Function f takes two or more parameters, but only one parameter is provided.