Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
'declaration' : expects at least value1 argument - value2 provided
Remarks
A function template with a variable parameter list has too few arguments.
Example
The following example generates C2781:
// C2781.cpp
template<typename T>
void f(T, T, ...){}
int main() {
f(1); // C2781
// try the following line instead
f(1,1);
}